print docker and buildx versions

Signed-off-by: Davanum Srinivas <davanum@gmail.com>
pull/38281/head
Davanum Srinivas 2022-12-05 08:21:12 -05:00
parent 0e2b507442
commit 4d644b3486
No known key found for this signature in database
GPG Key ID: 80D83A796103BF59
1 changed files with 2 additions and 0 deletions

View File

@ -77,6 +77,8 @@ container-push: container-image ## Push container image for the preview of the w
PLATFORMS ?= linux/arm64,linux/amd64
docker-push: ## Build a multi-architecture image and push that into the registry
docker run --rm --privileged tonistiigi/binfmt:qemu-v6.2.0-26@sha256:5bf63a53ad6222538112b5ced0f1afb8509132773ea6dd3991a197464962854e --install all
docker version
docker buildx version
docker buildx create --use --name=image-builder 2>/dev/null || docker buildx use --default image-builder
# copy existing Dockerfile and insert --platform=${BUILDPLATFORM} into Dockerfile.cross, and preserve the original Dockerfile
sed -e '1 s/\(^FROM\)/FROM --platform=\$$\{BUILDPLATFORM\}/; t' -e ' 1,// s//FROM --platform=\$$\{BUILDPLATFORM\}/' Dockerfile > Dockerfile.cross