From 3c2a7611bf9c2c9baed018a7198f03a7bd29ac5b Mon Sep 17 00:00:00 2001 From: Kent Rancourt Date: Thu, 5 Nov 2015 13:34:11 -0500 Subject: [PATCH] Improve examples/https-nginx dependency management --- examples/https-nginx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/https-nginx/Makefile b/examples/https-nginx/Makefile index 3c3bc93ed12..a45d4c8c0ae 100644 --- a/examples/https-nginx/Makefile +++ b/examples/https-nginx/Makefile @@ -11,7 +11,7 @@ keys: openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout $(KEY) -out $(CERT) -subj "/CN=nginxsvc/O=nginxsvc" secret: - CGO_ENABLED=0 GOOS=linux go run -a -installsuffix cgo -ldflags '-w' make_secret.go -crt $(CERT) -key $(KEY) > $(SECRET) + godep go run make_secret.go -crt $(CERT) -key $(KEY) > $(SECRET) container: docker build -t $(PREFIX):$(TAG) .