blob: 7bd9ea32191499313fe10653643d9a0533ed9548 [file] [log] [blame]
giolekva75ee2712021-11-26 13:57:12 +04001clean:
2 rm -f auth-smtp
3
4build: clean
5 go build -o auth-smtp *.go
6
7image: build
8 docker build --tag=giolekva/maddy-auth-smtp:v0.4.4 . --platform=linux/arm64
9
10push: image
11 docker push giolekva/maddy-auth-smtp:v0.4.4
12
13push_arm64: export GOOS=linux
14push_arm64: export GOARCH=arm64
15push_arm64: export CGO_ENABLED=0
16push_arm64: export GO111MODULE=on
17push_arm64: push