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 + -)" .