commit 3c2aa68e03229d7f3023b3aba3b8376f8619212e
parent 2bb8d5d68ad2a00576cb270c7c8f7fac01da9a46
Author: Joris Vink <joris@coders.se>
Date: Fri, 11 Feb 2022 23:20:46 +0100
always build with --no-cache
Diffstat:
build.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.sh b/build.sh
@@ -14,10 +14,10 @@ if [ "$IMAGE" = "kodev" ]; then
REPO=kodev
fi
-docker build -t kore/$REPO:$IMAGE-amd64 --platform linux/amd64 $IMAGE
+docker build --no-cache -t kore/$REPO:$IMAGE-amd64 --platform linux/amd64 $IMAGE
docker push kore/$REPO:$IMAGE-amd64
-docker build -t kore/$REPO:$IMAGE-arm64 $IMAGE
+docker build --no-cache -t kore/$REPO:$IMAGE-arm64 $IMAGE
docker push kore/$REPO:$IMAGE-arm64
docker manifest rm kore/$REPO:$IMAGE