diff options
author | mmis <michael.morris@ericsson.com> | 2018-07-10 10:50:05 +0100 |
---|---|---|
committer | mmis <michael.morris@ericsson.com> | 2018-07-10 16:31:01 +0100 |
commit | ef24b0561786040752bd46ade5859968d57ea031 (patch) | |
tree | e8b9dc58a92a986d285ae44c688e2553f7e1b4b6 /docker_verify.sh | |
parent | da923d791ae2e3ca67dd9711e7c3f173b500abce (diff) |
Create docker image for apex-pdp
Issue-ID: POLICY-866
Change-Id: I6bc322224e087acae1c92a67c48506f061a59d14
Signed-off-by: mmis <michael.morris@ericsson.com>
Diffstat (limited to 'docker_verify.sh')
-rw-r--r-- | docker_verify.sh | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/docker_verify.sh b/docker_verify.sh new file mode 100644 index 000000000..0f77a61e7 --- /dev/null +++ b/docker_verify.sh @@ -0,0 +1,75 @@ +#!/bin/bash +# +echo '============== STARTING SCRIPT TO BUILD DOCKER IMAGES =================' +# +# JUST VERIFY ONLY - NO PUSHING +# +DOCKER_REPOSITORY=nexus3.onap.org:10003 +MVN_VERSION=$(cat packages/apex-pdp-docker/target/version) +MVN_MAJMIN_VERSION=$(cut -f 1,2 -d . packages/apex-pdp-docker/target/version) +TIMESTAMP=$(date -u +%Y%m%dT%H%M%S) +PROXY_ARGS="" +IMAGE=policy-apex-pdp + +if [ $HTTP_PROXY ]; then + PROXY_ARGS+="--build-arg HTTP_PROXY=${HTTP_PROXY}" +fi +if [ $HTTPS_PROXY ]; then + PROXY_ARGS+=" --build-arg HTTPS_PROXY=${HTTPS_PROXY}" +fi + +echo $DOCKER_REPOSITORY +echo $MVN_VERSION +echo $MVN_MAJMIN_VERSION +echo $TIMESTAMP + +if [[ -z $MVN_VERSION ]] +then + echo "MVN_VERSION is empty" + exit 1 +fi + +if [[ -z $MVN_MAJMIN_VERSION ]] +then + echo "MVN_MAJMIN_VERSION is empty" + exit 1 +fi + +if [[ $MVN_VERSION == *"SNAPSHOT"* ]] +then + MVN_MAJMIN_VERSION="${MVN_MAJMIN_VERSION}-SNAPSHOT" +else + MVN_MAJMIN_VERSION="${MVN_MAJMIN_VERSION}-STAGING" +fi + +echo $MVN_MAJMIN_VERSION + +echo "Building $IMAGE" + +# +# This is the local latest tagged image. The Dockerfile's need this to build images +# +TAGS="--tag onap/${IMAGE}:latest" +# +# This has the nexus repo prepended and only major/minor version with latest +# +TAGS="${TAGS} --tag ${DOCKER_REPOSITORY}/onap/${IMAGE}:${MVN_MAJMIN_VERSION}-latest" +# +# This has the nexus repo prepended and major/minor/patch version with timestamp +# +TAGS="${TAGS} --tag ${DOCKER_REPOSITORY}/onap/${IMAGE}:${MVN_VERSION}-${TIMESTAMP}Z" + +echo $TAGS + +docker build ${PROXY_ARGS} $TAGS packages/apex-pdp-docker/target/$IMAGE + +if [ $? -ne 0 ] +then + echo "Docker build failed" + docker images + exit 1 +fi + +docker images + + |