blob: e39ad0d09d3df00406e278d83affcc808cc3e073 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/sh
CGO_ENABLED=0 go build . || exit 1
docker build -t git.d464.sh/code/whoami:latest -f Containerfile . || exit 1
if [ "$PUSH" = "1" ]; then
docker push git.d464.sh/code/whoami:latest || exit 1
fi
|