From 334e85273e331af7e2b326d9f69875265f69298c Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Tue, 8 Mar 2022 00:48:32 -0500 Subject: [PATCH] fix: use correct platforms for buildx --- contrib/release-dokku | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/release-dokku b/contrib/release-dokku index 1ec03cac0..c918c659d 100755 --- a/contrib/release-dokku +++ b/contrib/release-dokku @@ -354,14 +354,14 @@ fn-build-docker-image() { if [[ "$IS_RELEASE" == "true" ]]; then docker buildx build \ - --platform linux/arm/v7,linux/arm64/v8,linux/amd64 \ + --platform linux/arm,linux/arm64,linux/amd64 \ --progress plain \ --push \ --tag "dokku/dokku:latest" \ --tag "dokku/dokku:$VERSION" . else docker buildx build \ - --platform linux/arm/v7,linux/arm64/v8,linux/amd64 \ + --platform linux/arm,linux/arm64,linux/amd64 \ --progress plain \ --tag "dokku/dokku:latest" \ --tag "dokku/dokku:$(echo "$VERSION" | tr + -)" .