1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-20 04:59:25 +02:00
dockerfiles/webhook/Makefile

15 lines
279 B
Makefile
Raw Normal View History

2015-11-05 11:32:10 +08:00
.PHONY: webhook
2015-11-05 18:22:30 +08:00
export CGO_ENABLED=0
2015-11-05 11:32:10 +08:00
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