From ed0e6209732936508ad217048681ab2a2db217e1 Mon Sep 17 00:00:00 2001 From: Anna Rift Date: Thu, 12 Sep 2024 12:56:46 -0700 Subject: [PATCH] Build multiarch image in test-docker.bash Signed-off-by: Anna Rift --- util/cron/test-docker.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/cron/test-docker.bash b/util/cron/test-docker.bash index 6abfe1f568d..d45f267f196 100755 --- a/util/cron/test-docker.bash +++ b/util/cron/test-docker.bash @@ -15,7 +15,7 @@ build_image() { # Remove any existing image with the tag before building docker image docker image rm --force $imageName - docker build --push . -t $imageName + docker buildx build --platform=linux/amd64,linux/arm64 . --push -t $imageName BUILD_RESULT=$? if [ $BUILD_RESULT -ne 0 ] then