diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-08-15 19:22:03 +0800 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-08-15 19:22:35 +0800 |
commit | 71488f1e6342dc8beaf26e633b6967b936c22c05 (patch) | |
tree | c6641fab148d61dc57cc45b2eeb252148d1aee00 /build4basedocker.sh | |
parent | 86d68833aff7d24895a9512ab6fff0ed8439d753 (diff) |
Add dockerfile for base image
Issue_Id: MSB-19
Change-Id: I4b1408a489a45052927fcc978e4803b545e06e06
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'build4basedocker.sh')
-rw-r--r-- | build4basedocker.sh | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/build4basedocker.sh b/build4basedocker.sh new file mode 100644 index 0000000..0f575cb --- /dev/null +++ b/build4basedocker.sh @@ -0,0 +1,46 @@ +#!/bin/sh +# +# Copyright 2016-2017 ZTE, Inc. and others. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + + +DIRNAME=`dirname $0` +RUNHOME=`cd $DIRNAME/; pwd` +echo @RUNHOME@ $RUNHOME + +#cooy +RELEASE_BASE_DIR=$RUNHOME/release +echo @RELEASE_BASE_DIR@ $RELEASE_BASE_DIR + +RELEASE_DIR=${RELEASE_BASE_DIR}/msb-base +rm -rf $RELEASE_DIR +mkdir $RELEASE_DIR -p + +DOCKER_IMAGE_NAME=msb_base +DOCKER_RELEASE_VERSION=latest + +cp -r $RUNHOME/distributions/msb-apigateway/src/main/basedocker/* ${RELEASE_DIR} +cp $RUNHOME/ci/build_docker_image.sh ${RELEASE_DIR} +#build docker image +cd ${RELEASE_DIR} +chmod +x build_docker_image.sh + + + +docker rmi ${DOCKER_IMAGE_NAME}:${DOCKER_RELEASE_VERSION} + +./build_docker_image.sh -n=${DOCKER_IMAGE_NAME} -v=${DOCKER_RELEASE_VERSION} -d=./docker + + |