summaryrefslogtreecommitdiffstats
path: root/vesagent/docker/docker-build.sh
blob: 8eb23464f68941d4051c1da44c0373c35f911c66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/bash
# Copyright (c) 2017-2018 VMware, Inc.
#
# 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.

echo "WORKSPACE: ${WORKSPACE}"
VERSION="1.0.0-SNAPSHOT"
STAGING="1.0.0-STAGING"

#
# Copy configurations directory
#
CONF_DIR=${WORKSPACE}/vesagent/etc

if [ ! -d "${CONF_DIR}" ]
then
    echo "FATAL error cannot locate ${CONF_DIR}"
    exit 2
fi

APP_DIR=${WORKSPACE}/vesagent/docker/opt

[ -d "${APP_DIR}/etc" ] && rm -rf "${APP_DIR}/etc"

cp -a ${CONF_DIR} ${APP_DIR}

#
# Copy python scripts directory
#
PY_DIR=${WORKSPACE}/vesagent/py

if [ ! -d "${PY_DIR}" ]
then
    echo "FATAL error cannot locate ${PY_DIR}"
    exit 2
fi

if [  -d "${PY_DIR}" ]
then
    [ -d "${APP_DIR}/py" ] && rm -rf "${APP_DIR}/py"

    cp -a ${PY_DIR} ${APP_DIR}

    echo "Remove all dummy & test scripts"
    rm -f ${APP_DIR}/py/dummy*
    rm -f ${APP_DIR}/py/test*
fi

#
# build the docker image. tag and then push to the remote repo
#
BUILD_ARGS="--no-cache"
DOCKER_REPOSITORY="nexus3.onap.org:10003"
ORG="onap"
PROJECT="multicloud"
IMAGE="vio-vesagent"
# VERSION="${VERSION//[^0-9.]/}"
IMAGE_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/${IMAGE}"

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

function build_image {
    # build the image
    echo "Start build docker image: ${IMAGE_NAME}"
    cd ${WORKSPACE}/vesagent/docker/
    docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:${VERSION} -t ${IMAGE_NAME}:latest -t ${IMAGE_NAME}:${STAGING} .
}

function push_image {
    # push the image
    echo "Start push docker image: ${IMAGE_NAME}"
    docker push ${IMAGE_NAME}:${VERSION}
    docker push ${IMAGE_NAME}:latest
    docker push ${IMAGE_NAME}:${STAGING}
}

build_image
push_image