blob: c444c976840ae3e649c03fffe1955d4cb596c987 [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
8 docker build --tag=giolekva/auth-ui .
9
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