From c770356465d143d13148ad94f4f56423dfe80273 Mon Sep 17 00:00:00 2001 From: Rebecca Valente Date: Fri, 11 Jul 2025 01:12:00 -0300 Subject: [PATCH] devops: updated platform specification in docker build to use multi-platform support. --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 12880bc..006648c 100755 --- a/build.sh +++ b/build.sh @@ -5,7 +5,7 @@ docker buildx build \ --tag rbvtopudding/devops:latest \ --push \ # --platform linux/arm64/v8,linux/amd64 \ - --platform linux/amd64 \ + # --platform linux/amd64 \ . @@ -14,5 +14,5 @@ docker buildx build \ --tag rbvtopudding/devops:1.0.0 \ --push \ # --platform linux/arm64/v8,linux/amd64 \ - --platform linux/amd64 \ + # --platform linux/amd64 \ .