From 671c9ea4ac9d11f7e562f7ce44b62d88de55f132 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Thu, 25 Dec 2025 20:27:50 -0800 Subject: [PATCH] bugfix: include --metadata-file in the build.sh that was accidently removed --- build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sh b/build.sh index d3c3dce78..d4d07cfa2 100755 --- a/build.sh +++ b/build.sh @@ -105,6 +105,7 @@ fi # --push will push all tags automatically docker buildx build \ --platform linux/amd64 \ + --metadata-file $METADATA_FILE \ --build-arg GIT_COMMIT=$GIT_COMMIT \ --cache-from type=registry,ref=$BUILDCACHE_IMAGE \ --cache-to type=registry,ref=$BUILDCACHE_IMAGE,mode=max \