summaryrefslogtreecommitdiffstats
path: root/build_and_push.sh
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-11-15 17:25:42 +0100
committerivarlovlie <git@ivarlovlie.no>2022-11-15 17:25:42 +0100
commit6423e9dd3c2aef2a125ec1342c1c4e52b81cb3fe (patch)
tree5132c3e3acf787d95431bda7efd562551467e286 /build_and_push.sh
parent600add04a5cc61b16890845531a6396c7e69cc16 (diff)
downloadlettnytt-6423e9dd3c2aef2a125ec1342c1c4e52b81cb3fe.tar.xz
lettnytt-6423e9dd3c2aef2a125ec1342c1c4e52b81cb3fe.zip
refactor(build): Don't use buildx to build docker image
Diffstat (limited to 'build_and_push.sh')
-rwxr-xr-xbuild_and_push.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_and_push.sh b/build_and_push.sh
index 987b791..26db74f 100755
--- a/build_and_push.sh
+++ b/build_and_push.sh
@@ -68,7 +68,7 @@ fi
echo "Building docker image"
echo
-docker buildx build --platform linux/amd64 -t $IMAGE_NAME:$NEW_VERSION .
+docker build -t $IMAGE_NAME:$NEW_VERSION .
docker tag $IMAGE_NAME:$NEW_VERSION $HUB_NAME:$NEW_VERSION