drone-semantic-release/scripts/build_docker.sh
kjuulh f32ffa466d
Some checks failed
continuous-integration/drone/push Build is failing
with cache as well
2022-08-21 16:10:33 +02:00

15 lines
310 B
Bash
Executable File

#!/bin/bash
set -e
echo "building docker image"
export DOCKER_BUILDKIT=1
tag="$REGISTRY/$SERVICE:${COMMIT_SHA:0:10}"
latest_tag="$REGISTRY/$SERVICE:latest"
docker build -t "$tag" --cache-from "$latest_tag" -f $TMP/build_docker.Dockerfile .
docker tag "$tag" "$latest_tag"
docker push "$tag" "$latest_tag"