From 4b26ab9d1f11d4a311ef7d292765c11a73a57265 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 19 Oct 2023 16:29:49 -0700 Subject: [PATCH] only load image into docker when building, and push on deploy --- bin/build_docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build_docker.sh b/bin/build_docker.sh index 9377e201..1b9d32fc 100755 --- a/bin/build_docker.sh +++ b/bin/build_docker.sh @@ -66,7 +66,7 @@ check_platforms || (recreate_builder && check_platforms) || exit 1 echo "[+] Building archivebox:$VERSION docker image..." #docker build . \ -docker buildx build --platform "$REQUIRED_PLATFORMS" --push . \ +docker buildx build --platform "$REQUIRED_PLATFORMS" --load . \ -t archivebox \ -t archivebox:$TAG_NAME \ -t archivebox:$VERSION \