docker/synapse/build.sh

44 lines
935 B
Bash
Raw Normal View History

2020-01-28 17:52:45 +00:00
#!/usr/bin//env bash
TAG=$1
function require() {
if [ "$1" = "" ]; then
echo "input '$2' required"
print_help
exit 1
fi
}
function print_help() {
echo "build.sh"
echo ""
echo "Usage:"
echo " build.sh [tag]"
echo ""
echo "Args:"
2020-02-14 17:25:52 +00:00
echo " tag: The tag of the synapse image that is being produced"
2020-01-28 17:52:45 +00:00
}
require "$TAG" tag
2021-10-22 04:18:52 +00:00
if ! sudo docker run --rm -it arm64v8/ubuntu:19.10 /bin/bash -c 'echo "docker is configured correctly"'; then
2020-05-03 14:40:35 +00:00
echo "docker is not configured to run on qemu-emulated architectures, fixing will require sudo"
sudo docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
fi
2020-01-28 17:52:45 +00:00
set -xe
2021-10-22 04:18:52 +00:00
sudo docker build \
2020-01-28 17:52:45 +00:00
--pull \
--no-cache \
-f Dockerfile \
-t "asonix/synapse:$TAG-arm64v8" \
-t asonix/synapse:latest-arm64v8 \
-t asonix/synapse:latest \
.
2021-10-22 04:18:52 +00:00
sudo docker push "asonix/synapse:$TAG-arm64v8"
sudo docker push asonix/synapse:latest-arm64v8
sudo docker push asonix/synapse:latest