From 519a22847b2c060dc90e6c2551173f082f09a0ff Mon Sep 17 00:00:00 2001 From: tim Date: Mon, 24 Nov 2025 18:04:31 -0400 Subject: [PATCH] fixed docker platforrm selection --- bin/deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/deploy b/bin/deploy index a183ab2..6650ead 100755 --- a/bin/deploy +++ b/bin/deploy @@ -30,7 +30,7 @@ npm run build || exit 1 if [ "$BUILD" != "1" ]; then echo Deploying with tag $TAG - docker build --no-cache -f deploy/Dockerfile -t dexorder/$PROJECT:latest . || exit 1 + docker buildx build --platform linux/amd64 --no-cache -f deploy/Dockerfile -t dexorder/$PROJECT:latest . || exit 1 docker tag dexorder/$PROJECT:latest dexorder/$PROJECT:$TAG docker tag dexorder/$PROJECT:$TAG $REMOTE/$PROJECT:$TAG docker tag $REMOTE/$PROJECT:$TAG $REMOTE/$PROJECT:latest