From e81dfabbd47a714b725232ca9d4a65f7afe479e7 Mon Sep 17 00:00:00 2001 From: Zhang Dongliang Date: Tue, 5 Sep 2023 12:53:33 +0800 Subject: [PATCH] hotfix: typo --- scripts/docker_push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docker_push.sh b/scripts/docker_push.sh index 7f4d0684a9..ae426e6d5a 100755 --- a/scripts/docker_push.sh +++ b/scripts/docker_push.sh @@ -120,7 +120,7 @@ build_image() { if [[ "$tag" == *"amd64" || "$ARCH" == "" || "$ARCH" == "amd64" || "$ARCH" == "x86_64" || "$ARCH" == "x86" ]]; then docker buildx build -t "$tag" -f "$file" "$path" --push --platform linux/amd64 elif [[ "$tag" == *"arm64" || "$ARCH" == "arm64" ]]; then - docker buildx build -t "$tag" -f "$file" "$path" --push --platform linux/amd64 + docker buildx build -t "$tag" -f "$file" "$path" --push --platform linux/arm64 else docker buildx build -t "$tag" -f "$file" "$path" --push fi