blob: 38a2eafce44a5f05678a8db2e21f582c510e999f [file] [log] [blame]
giolekva1cf54312021-09-23 21:27:20 +04001build:
2 go1.16 build -o maddy-web *.go
3
4clean:
5 rm -f maddy-web
6
7image: clean build
8 docker build --tag=giolekva/maddy-web .
9
10push: image
11 docker push giolekva/maddy-web:latest
12
13
14push_arm64: export GOOS=linux
15push_arm64: export GOARCH=arm64
16push_arm64: export CGO_ENABLED=0
17push_arm64: export GO111MODULE=on
18push_arm64: push