blob: c444c976840ae3e649c03fffe1955d4cb596c987 [file] [log] [blame]
build:
go build -o server *.go
clean:
rm -f server
image: clean build
docker build --tag=giolekva/auth-ui .
push: image
docker push giolekva/auth-ui:latest
push_arm64: export GOOS=linux
push_arm64: export GOARCH=arm64
push_arm64: export CGO_ENABLED=0
push_arm64: export GO111MODULE=on
push_arm64: push