❇️ Don't use Docker cache for 'master' and 'develop'

This commit is contained in:
Christian Mäder 2017-08-11 17:08:43 +02:00
parent 98d90582b7
commit 34d5bd711e
No known key found for this signature in database
GPG Key ID: 92FFD0A711F196BB
1 changed files with 4 additions and 1 deletions

View File

@ -30,14 +30,17 @@ URL="${URL-https://github.com/${SRC_REPO}/netbox/archive/$BRANCH.tar.gz}"
if [ "${BRANCH}" == "master" ]; then
TAG="${TAG-latest}"
CACHE="--no-cache"
elif [ "${BRANCH}" == "develop" ]; then
TAG="${TAG-snapshot}"
CACHE="--no-cache"
else
TAG="${TAG-$BRANCH}"
CACHE=""
fi
echo "🐳 Building the Docker image '${DOCKER_REPO}/netbox:${TAG}' from the branch '${BRANCH}'."
docker build -f Dockerfile -t "${DOCKER_REPO}/netbox:${TAG}" --build-arg "BRANCH=${BRANCH}" --build-arg "URL=${URL}" --pull .
docker build -t "${DOCKER_REPO}/netbox:${TAG}" --build-arg "BRANCH=${BRANCH}" --build-arg "URL=${URL}" --pull ${CACHE} .
echo "✅ Finished building the Docker images '${DOCKER_REPO}/netbox:${TAG}'"
if [ "${2}" == "--push" ] ; then