blob: 70bf15cd56a39e3510f5ef38208235f64c3dd57e [file] [log] [blame]
giolekva603e73a2021-10-22 14:46:45 +04001build:
2 go build -o server *.go
3
4clean:
5 rm -f server
6
7image: clean build
giolekvaeb590282021-10-22 17:31:40 +04008 docker build --tag=giolekva/auth-ui . --platform=linux/arm64
giolekva603e73a2021-10-22 14:46:45 +04009
10push: image
11 docker push giolekva/auth-ui: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