Files
traefik-whoami/Makefile
Ludovic Fernandez 72d3d9cd1c New build system (#9)
2018-08-09 11:05:36 +02:00

13 lines
212 B
Makefile

.PHONY: default build dependencies image
default: build
build:
CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags="-s" -o whoami
dependencies:
dep ensure -v
image:
docker build -t containous/whoami .