aboutsummaryrefslogtreecommitdiff
path: root/build.sh
blob: 4f75a5f194d45964675fe060d56fd43e5991e69e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env sh

IMAGE_NAME=cr.d464.sh/belverde-fire:latest

go build . || exit 1
docker build -t $IMAGE_NAME -f Containerfile . || exit 1

if [ "$PUSH" = "1" ]; then
	docker push $IMAGE_NAME
fi