From 0bd454cc448b812da6c693b451d86ff4cadbb6b2 Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Wed, 3 Jul 2019 15:31:38 +0100 Subject: Use the static container image This includes ca-certs in the docker image Fixes #82 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 46b0064..db969b8 100644 --- a/Makefile +++ b/Makefile @@ -24,13 +24,13 @@ lint: dep build: cashier cashierd generate: - go generate -x ./... + go generate ./... %-cmd: CGO_ENABLED=$(CGO_ENABLED) GOARCH=$(GOARCH) GOOS=$(GOOS) go build -ldflags="-X $(VERSION_PKG)=$(VERSION)" -o $* ./cmd/$* install-%: generate - CGO_ENABLED=$(CGO_ENABLED) GOARCH=$(GOARCH) GOOS=$(GOOS) go install -x -ldflags="-X $(VERSION_PKG)=$(VERSION)" ./cmd/$* + CGO_ENABLED=$(CGO_ENABLED) GOARCH=$(GOARCH) GOOS=$(GOOS) go install -ldflags="-X $(VERSION_PKG)=$(VERSION)" ./cmd/$* clean: rm -f cashier cashierd -- cgit v1.2.3