with cache as well
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Kasper Juul Hermansen 2022-08-21 16:10:33 +02:00
parent 9a8e901219
commit f32ffa466d
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23

View File

@ -9,6 +9,6 @@ export DOCKER_BUILDKIT=1
tag="$REGISTRY/$SERVICE:${COMMIT_SHA:0:10}"
latest_tag="$REGISTRY/$SERVICE:latest"
docker build -t "$tag" -f $TMP/build_docker.Dockerfile .
docker build -t "$tag" --cache-from "$latest_tag" -f $TMP/build_docker.Dockerfile .
docker tag "$tag" "$latest_tag"
docker push "$tag" "$latest_tag"