VERSION=$(shell git describe --tags | sed 's/^v//' ) BUILD=$(shell date +%FT%T%z) #DEBIAN_IMAGE=debian-build:1.17-buster DEBIAN_IMAGE="debuild-with-libpcap-static:latest" all: docker run --rm -v $(PWD):/root/go/src/git.scraperwall.com/scw/munchclient -w /root/go/src/git.scraperwall.com/scw/munchclient registry.scw.systems/centos7-build:latest make compile all-debian: docker run --rm -v $(PWD):/go/src/git.scraperwall.com/scw/munchclient -w /go/src/git.scraperwall.com/scw/munchclient $(DEBIAN_IMAGE) make compile # docker run --rm -v $(PWD):/go/src/git.scraperwall.com/scw/munchclient -w /go/src/git.scraperwall.com/scw/munchclient registry.scw.systems/debian-build:latest make compile compile: env GOOS=linux GOARCH=amd64 go build -mod=vendor -tags netgo -ldflags "-s -X main.Version=$(VERSION) -X main.BuildDate=$(BUILD)"