From e9f847b9f5319199351c21071e5953975721b913 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Mon, 2 Dec 2024 21:56:16 +0100 Subject: [PATCH] Revert "ba1f2b9d75e27c8727306143819c8ea02e1213a1" (updated) --- Makefile | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index 0990d04..d545c32 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,20 @@ PLATFORMS=linux/amd64 help: - @echo "make help Displays help" - @echo " build Builds the image" - @echo " upload Builds and uploads the image" - @echo " upload-only Uploads the image only, in case it fails" - @echo " prune-cache Prunes the entire build cache" + @echo "make help Displays help" + @echo " build Builds the image" + @echo " upload Builds and uploads the image" + @echo " upload-only Uploads the image only, in case it fails" + @echo " prune-cache Prunes the entire build cache" build: - docker buildx rm actions-docker || true - docker buildx create --bootstrap --name actions-docker --platform ${PLATFORMS} - docker buildx build --builder actions-docker --load --platform ${PLATFORMS} --target base -t git.staropensource.de/infrastructure/actions-docker:latest . - docker buildx build --builder actions-docker --load --platform ${PLATFORMS} --target java -t git.staropensource.de/infrastructure/actions-docker:java . - docker buildx rm actions-docker + docker buildx rm actions-docker || true + docker buildx create --bootstrap --name actions-docker --platform ${PLATFORMS} + docker buildx build --builder actions-docker --load --platform ${PLATFORMS} --target base -t git.staropensource.de/infrastructure/actions-docker:latest . + docker buildx build --builder actions-docker --load --platform ${PLATFORMS} --target java -t git.staropensource.de/infrastructure/actions-docker:java . + docker buildx rm actions-docker upload: build upload-only upload-only: - docker push git.staropensource.de/infrastructure/actions-docker:latest - docker push git.staropensource.de/infrastructure/actions-docker:java + docker push git.staropensource.de/infrastructure/actions-docker:latest + docker push git.staropensource.de/infrastructure/actions-docker:java prune-cache: - docker buildx prune -af + docker buildx prune -af