From 5353f7df61d16d6624ba033627a7d09160fb679c Mon Sep 17 00:00:00 2001 From: HuabingZhao Date: Tue, 4 Jul 2017 05:15:15 +0000 Subject: migrate discovery source codes from OPEN-O Change-Id: I65396f0ed5f85542e8b17b509fc30073bf7f959e Signed-off-by: HuabingZhao --- ci/build_docker_image.sh | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 ci/build_docker_image.sh (limited to 'ci/build_docker_image.sh') diff --git a/ci/build_docker_image.sh b/ci/build_docker_image.sh new file mode 100644 index 0000000..7b6b546 --- /dev/null +++ b/ci/build_docker_image.sh @@ -0,0 +1,36 @@ +#!/bin/bash + +for i in "$@" +do +case $i in + -n=*|--name=*) + NAME="${i#*=}" + shift + ;; + -v=*|--version=*) + VERSION="${i#*=}" + shift + ;; + -d=*|--dir=*) + DIR="${i#*=}" + shift + ;; +esac +done + +if [[ ${NAME} && ${VERSION} && ${DIR} ]]; then + echo "assign the x to all files and dirs under current dir.." + chmod +x -R . + 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 "^" | 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 + echo "build completes!" +else + echo "not all -n and -v and -d are provided!" + exit 1 +fi -- cgit 1.2.3-korg