diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-08-23 18:33:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-08-23 18:33:23 +0000 |
commit | cacc77da25e42ccae6344dbffd5f7b28d5b6b642 (patch) | |
tree | f9bf8a5180d9ecd60072f1ac7a3c7d6e0815faa7 /bin/distcenter | |
parent | 7c6ce03e30552e4acc7a065cc05547b08fba82d3 (diff) | |
parent | 858b1278219b5cb6ca6f6d4abcb20b0180216be1 (diff) |
Merge "Add build scripts and tabrmd"
Diffstat (limited to 'bin/distcenter')
-rw-r--r-- | bin/distcenter/README.txt | 2 | ||||
-rwxr-xr-x | bin/distcenter/build_distcenter_image.sh | 39 | ||||
-rw-r--r-- | bin/distcenter/distcenterdockerfile (renamed from bin/distcenter/Dockerfile) | 9 |
3 files changed, 44 insertions, 6 deletions
diff --git a/bin/distcenter/README.txt b/bin/distcenter/README.txt index fe39395..4002dc7 100644 --- a/bin/distcenter/README.txt +++ b/bin/distcenter/README.txt @@ -13,7 +13,7 @@ example Build the container using - docker build --no-cache -t dist-center . + docker build --no-cache -t dist-center -f distcenterdockerfile . Run it mounting the volume diff --git a/bin/distcenter/build_distcenter_image.sh b/bin/distcenter/build_distcenter_image.sh new file mode 100755 index 0000000..8da9d8b --- /dev/null +++ b/bin/distcenter/build_distcenter_image.sh @@ -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="distcenter" +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 distcenterdockerfile . +} + +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 diff --git a/bin/distcenter/Dockerfile b/bin/distcenter/distcenterdockerfile index cb6f000..d643878 100644 --- a/bin/distcenter/Dockerfile +++ b/bin/distcenter/distcenterdockerfile @@ -1,17 +1,16 @@ -FROM rmannfv/aaf-base:openssl_1.1.0 +FROM nexus3.onap.org:10001/onap/aaf/aaf-base-openssl_1.1.0:latest RUN git clone https://gerrit.onap.org/r/aaf/sshsm RUN cd sshsm && \ cd tpm-util && \ cd duplicate && \ make -f sampleMakefile +RUN mkdir -p /dup/bin && \ + cp sshsm/tpm-util/duplicate/ossl_tpm_duplicate /dup/bin && \ + rm -rf sshsm RUN mkdir -p /distcenter/bin COPY ./create_ca.sh /distcenter/bin -RUN mkdir /dup -RUN mkdir /dup/bin - -RUN cp sshsm/tpm-util/duplicate/ossl_tpm_duplicate /dup/bin ADD entrypoint.sh /entrypoint.sh ENTRYPOINT [ "/entrypoint.sh" ] |