From 6302190494f691b79ce76c8a3afd4af4f2b1b87d Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sun, 18 Aug 2024 18:05:37 +0200 Subject: [PATCH] Add --load flag --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 277b68e..c1f1760 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,8 @@ help: build: docker buildx rm actions-docker || true docker buildx create --name actions-docker --bootstrap --use - docker buildx build --platform ${PLATFORMS} -t git.staropensource.de/staropensource/actions-docker:latest -f Dockerfile . - docker buildx build --platform ${PLATFORMS} -t git.staropensource.de/staropensource/actions-docker:java -f Dockerfile.java . + docker buildx build --load --platform ${PLATFORMS} -t git.staropensource.de/staropensource/actions-docker:latest -f Dockerfile . + docker buildx build --load --platform ${PLATFORMS} -t git.staropensource.de/staropensource/actions-docker:java -f Dockerfile.java . docker buildx rm actions-docker upload: build docker push git.staropensource.de/staropensource/actions-docker:latest