From 45fc183c8c40646b834eb8e32593ab7e99b8116b Mon Sep 17 00:00:00 2001 From: captainhook <16797541+captainhook@users.noreply.github.com> Date: Fri, 3 Oct 2025 23:32:35 +0100 Subject: [PATCH] Correct value for --platform argument --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 905f390..647e87e 100755 --- a/build.sh +++ b/build.sh @@ -40,7 +40,7 @@ cp $DIR/.keys/cert.cert $DIR/server/src/Core/licensing.cer docker build \ --no-cache \ - --platform "$BUILDPLATFORM" \ + --platform "$TARGETPLATFORM" \ --build-arg BUILDPLATFORM="$BUILDPLATFORM" \ --build-arg TARGETPLATFORM="$TARGETPLATFORM" \ --label com.bitwarden.product="bitbetter" \ @@ -50,7 +50,7 @@ docker build \ docker build \ --no-cache \ - --platform "$BUILDPLATFORM" \ + --platform "$TARGETPLATFORM" \ --build-arg BUILDPLATFORM="$BUILDPLATFORM" \ --build-arg TARGETPLATFORM="$TARGETPLATFORM" \ --label com.bitwarden.product="bitbetter" \