Skip to content

Commit

Permalink
add custom multi-arch builder for CDP pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
linki committed Jun 16, 2022
1 parent c2db36f commit 762db0e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packaging/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ docker.push.armv7: docker.build.armv7
docker push $(ARM_IMAGE)

docker.push.multiarch: clean build.linux docker.build.enable
# Install qemu interpreter for arm64 (https://docs.docker.com/buildx/working-with-buildx/#build-multi-platform-images)
docker run --rm --privileged container-registry.zalando.net/teapot/tonistiigi-binfmt:qemu-v6.2.0-main-2 --install arm64

# create a Buildkit builder with CDP specific configuration (https://cloud.docs.zalando.net/howtos/cdp-multiarch/)
docker buildx create --config /etc/cdp-buildkitd.toml --driver-opt network=host --bootstrap --use

# build multi-arch container image using a trusted multi-arch base image
docker buildx build --rm -t $(MULTIARCH_IMAGE) --platform linux/amd64,linux/arm64 --push \
--build-arg BASE_IMAGE=container-registry.zalando.net/library/alpine-3.13:latest .

Expand Down

0 comments on commit 762db0e

Please sign in to comment.