;

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-03-20 01:54:27 -04:00
parent 99c2e615ee
commit 2b03278aa2
2 changed files with 7 additions and 2 deletions

View file

@ -17,7 +17,7 @@ alpine: generate
CGO_ENABLED=1 go build \
-tags "$(BUILDTAGS) static_build" \
${GO_LDFLAGS_STATIC} -o $@ ./examples/$@/...
@echo "Static container for alpine created at: ./$@"
@echo "Static container for $@ created at: ./$@"
.PHONY: busybox
busybox: generate
@ -25,7 +25,7 @@ busybox: generate
CGO_ENABLED=1 go build \
-tags "$(BUILDTAGS) static_build" \
${GO_LDFLAGS_STATIC} -o $@ ./examples/$@/...
@echo "Static container for alpine created at: ./$@"
@echo "Static container for $@ created at: ./$@"
.PHONY: fmt
fmt: ## Verifies all files have men `gofmt`ed