diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-08-19 04:33:16 +0000 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-08-19 04:33:27 +0000 |
commit | 23d325cc76c8c77b54b2fadfd86aa48f6ee599f3 (patch) | |
tree | 9a444b1b9032a6320892097e455c8fba067a5912 /ci/build_docker_image.sh | |
parent | ed667f8483e066e6c518a12caafdaca4e352e9fa (diff) |
Dockerfile and building scripts for discovery
Issue-Id: MSB-19
Change-Id: I907b96de27838ea55f61f1ad340d2ceaf3238c9c
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'ci/build_docker_image.sh')
-rw-r--r-- | ci/build_docker_image.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ci/build_docker_image.sh b/ci/build_docker_image.sh index 7b6b546..3c9f2f2 100644 --- a/ci/build_docker_image.sh +++ b/ci/build_docker_image.sh @@ -24,11 +24,11 @@ if [[ ${NAME} && ${VERSION} && ${DIR} ]]; then echo "begin to build image ${NAME}.." docker build --no-cache -t ${NAME}:${VERSION} . >/dev/null || { echo -e "\nBuild docker image failed!";exit 1; } docker rmi $(docker images | grep "^<none>" | awk '{print $3}') &>/dev/null - docker save -o ${NAME}.tar ${NAME}:${VERSION} >/dev/null || { rm -f ${NAME}.tar &>/dev/null;echo -e "\nSave docker image failed!";exit 1; } - if [ ! -d ${DIR} ]; then - mkdir -p ${DIR} - fi - mv ${NAME}.tar ${DIR}/${NAME}.tar &>/dev/null + # docker save -o ${NAME}.tar ${NAME}:${VERSION} >/dev/null || { rm -f ${NAME}.tar &>/dev/null;echo -e "\nSave docker image failed!";exit 1; } + # if [ ! -d ${DIR} ]; then + # mkdir -p ${DIR} + # fi + # mv ${NAME}.tar ${DIR}/${NAME}.tar &>/dev/null echo "build completes!" else echo "not all -n and -v and -d are provided!" |