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
|
#!/bin/bash
# Copyright (c) Istituto Nazionale di Fisica Nucleare (INFN). 2016-2019
#
# 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.
#
set -ex
# Check for env file in current dir
if [ -r .env ]; then
set -a
source ./.env
set +a
fi
if [ -n "${DOCKER_VERBOSE}" ]; then
set -x
else
set +x
fi
if [ -z "${DOCKER_IMAGE}" ]; then
echo "Please set the DOCKER_IMAGE env variable"
exit 1
fi
DOCKER_FILE=${DOCKER_FILE:-Dockerfile}
DOCKER_OPTS=${DOCKER_OPTS:-"--rm=true --no-cache=true"}
DOCKER_TAG=${DOCKER_TAG:-"latest"}
docker build -f ${DOCKER_FILE} \
${DOCKER_OPTS} \
-t ${DOCKER_IMAGE}:${DOCKER_TAG} .
if [ -n "${DOCKER_GIT_TAG_ENABLED}" ]; then
GIT_COMMIT_SHA=${CI_COMMIT_SHORT_SHA:-$(git rev-parse --short HEAD)}
GIT_BRANCH_NAME=${CI_COMMIT_REF_SLUG:-$(echo ${BRANCH_NAME-$(git rev-parse --abbrev-ref HEAD)}|sed 's#/#_#g')}
docker tag ${DOCKER_IMAGE} ${DOCKER_IMAGE}:${GIT_COMMIT_SHA}
if [[ -n ${GIT_BRANCH_NAME} ]] && [[ "${GIT_BRANCH_NAME}" != "HEAD" ]]; then
docker tag ${DOCKER_IMAGE} ${DOCKER_IMAGE}:${GIT_BRANCH_NAME}-latest
fi
fi
|