blob: 2cdc2d3ea261646b1f0cab905a15c7a5c008c2ca [file] [log] [blame]
clean:
rm -f capture-config
build: clean
go build -o capture-config *.go
image: build
docker build --tag=giolekva/capture-config:latest .
push: image
docker push giolekva/capture-config: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