Compare commits

..

No commits in common. "7d8722d995fc9e45f7e291faa4ca45178162080d" and "0009680eaf41cb876ae8f23fdd1caac8d1937321" have entirely different histories.

3 changed files with 5 additions and 4 deletions

View File

@ -16,7 +16,6 @@ then
fi
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
docker pull "$latest_tag"
DOCKER_BUILDKIT=1 docker build --cache-from "$latest_tag" -t "$tag" -f "$TMP/build_release.Dockerfile" .
docker tag "$tag" "$latest_tag"
docker tag "$tag" "$latest"

View File

@ -12,5 +12,7 @@ echo "docker: logging in"
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
echo "docker: pushing image $tag"
docker push --all-tags "$base_tag"
docker push "$tag" &
docker push "$latest_tag" &
wait

View File

@ -1,4 +1,4 @@
FROM rust:1.62.1-slim-buster
FROM rust:1.62.1-slim-buster as builder
RUN apt-get update && apt-get upgrade -y
RUN apt-get install libssl-dev