Add build script for testcaservice container 59/63159/3
authorManjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>
Tue, 28 Aug 2018 00:00:26 +0000 (17:00 -0700)
committerManjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>
Tue, 28 Aug 2018 00:20:56 +0000 (17:20 -0700)
Add script to build and push the image to
nexus repo. Invoke the script from top level
build script.

Issue-ID: AAF-447
Change-Id: I112efd4b484ee05e0ba0811efcb8ba7082a5d621
Signed-off-by: Manjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>
bin/build_images.sh
bin/caservicecontainer/build_testcaservice_image.sh [new file with mode: 0755]

index 43996ed..d47a893 100755 (executable)
@@ -12,3 +12,7 @@ chmod 755 build_distcenter_image.sh
 cd ../abrmdcontainer
 chmod 755 build_abrmd_image.sh
 ./build_abrmd_image.sh
+
+cd ../caservicecontainer
+chmod 755 build_testcaservice_image.sh
+./build_testcaservice_image.sh
diff --git a/bin/caservicecontainer/build_testcaservice_image.sh b/bin/caservicecontainer/build_testcaservice_image.sh
new file mode 100755 (executable)
index 0000000..0760950
--- /dev/null
@@ -0,0 +1,39 @@
+#!/bin/bash
+set -e
+DIRNAME=`dirname $0`
+DOCKER_BUILD_DIR=`cd $DIRNAME/; pwd`
+echo "DOCKER_BUILD_DIR=${DOCKER_BUILD_DIR}"
+cd ${DOCKER_BUILD_DIR}
+
+BUILD_ARGS="--no-cache"
+ORG="onap"
+VERSION="3.0.0"
+PROJECT="aaf"
+IMAGE="testcaservice"
+DOCKER_REPOSITORY="nexus3.onap.org:10003"
+IMAGE_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/${IMAGE}"
+TIMESTAMP=$(date +"%Y%m%dT%H%M%S")
+
+if [ $HTTP_PROXY ]; then
+    BUILD_ARGS+=" --build-arg HTTP_PROXY=${HTTP_PROXY}"
+fi
+if [ $HTTPS_PROXY ]; then
+    BUILD_ARGS+=" --build-arg HTTPS_PROXY=${HTTPS_PROXY}"
+fi
+echo $BUILD_ARGS
+
+function build_image {
+    echo "Start build docker image: ${IMAGE_NAME}:latest"
+    docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:latest -f dockerfile .
+}
+
+function push_image {
+    echo "Start push ${IMAGE_NAME}:latest"
+    docker push ${IMAGE_NAME}:latest
+    echo "Start push ${IMAGE_NAME}:${VERSION}-SNAPSHOT-latest"
+    docker tag ${IMAGE_NAME}:latest ${IMAGE_NAME}:${VERSION}-SNAPSHOT-latest
+    docker push ${IMAGE_NAME}:${VERSION}-SNAPSHOT-latest
+}
+
+build_image
+push_image