diff --git a/bin/build_docker_to_file b/bin/build_docker_to_file new file mode 100755 index 000000000..d5e47da51 --- /dev/null +++ b/bin/build_docker_to_file @@ -0,0 +1,12 @@ +#!/usr/bin/env sh +set -xe + +cd "$(dirname "$0")" + +export ZOPE_TAG=latest + +cd .. +docker buildx bake --set '*.platform=linux/amd64' zope + +cd dist +docker image save localhost/zope:$ZOPE_TAG > zope:latest.tar