bumper/hooks/push
Brian Martin 038bafb368 builds
Remove armv5
Remove old Dockerfile.arch
Generate manifest in post_push
2019-12-31 16:05:46 -05:00

9 lines
No EOL
192 B
Bash

#!/bin/bash
# Custom build script to push images for all supported architectures.
for arch in amd64 arm32v7 arm64v8
do
echo "Pushing $IMAGE_NAME-$arch"
docker push $IMAGE_NAME-$arch
done