Release container for armv7

Add linux/arm/v7 platform variant to release scripts docker buildx args.
This commit is contained in:
unitexe 2026-02-25 23:29:00 -06:00
parent c54eac28fd
commit 28a6fe5e22
No known key found for this signature in database
GPG Key ID: 03B8D58F8A06FA2A
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ $PREFIX docker run --privileged --rm tonistiigi/binfmt:qemu-v6.1.0 --install all
export DOCKER_CLI_EXPERIMENTAL=enabled export DOCKER_CLI_EXPERIMENTAL=enabled
$PREFIX docker buildx create --use --name multiarch-builder --node multiarch-builder0 $PREFIX docker buildx create --use --name multiarch-builder --node multiarch-builder0
# push to docker hub, both the given version as a tag and for "latest" tag # push to docker hub, both the given version as a tag and for "latest" tag
$PREFIX docker buildx build --platform linux/amd64,linux/s390x,linux/arm64,linux/ppc64le --tag fullstorydev/grpcurl:${VERSION} --tag fullstorydev/grpcurl:latest --push --progress plain --no-cache . $PREFIX docker buildx build --platform linux/amd64,linux/s390x,linux/arm64,linux/ppc64le,linux/arm/v7 --tag fullstorydev/grpcurl:${VERSION} --tag fullstorydev/grpcurl:latest --push --progress plain --no-cache .
$PREFIX docker buildx build --platform linux/amd64,linux/s390x,linux/arm64,linux/ppc64le --tag fullstorydev/grpcurl:${VERSION}-alpine --tag fullstorydev/grpcurl:latest-alpine --push --progress plain --no-cache --target alpine . $PREFIX docker buildx build --platform linux/amd64,linux/s390x,linux/arm64,linux/ppc64le,linux/arm/v7 --tag fullstorydev/grpcurl:${VERSION}-alpine --tag fullstorydev/grpcurl:latest-alpine --push --progress plain --no-cache --target alpine .
rm VERSION rm VERSION
# Homebrew release # Homebrew release