aboutsummaryrefslogtreecommitdiffstats
path: root/build-and-push.sh
blob: be3e962418abc440292812d61e24a79e4b3f6e85 (plain)
1
2
3
4
5
6
7
#!/bin/bash

IMAGE=registry.jan.systems/aggro:latest

set -euxo pipefail
docker build --platform linux/amd64 -t $IMAGE .
docker push $IMAGE