1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-01 03:01:29 +00:00
dockerfiles/webhook/Makefile
2015-11-05 11:32:10 +08:00

14 lines
258 B
Makefile

.PHONY: webhook
export GOPATH = /tmp/go
export GOOS = linux
export GOARCH = amd64
webhook:
go get -d github.com/adnanh/webhook
go build --ldflags '-s -extldflags "-static"' -i -o webhook github.com/adnanh/webhook
clean:
rm -rf $(GOPATH)
rm -f webhook