aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNiall Sheridan <nsheridan@gmail.com>2019-07-03 15:31:38 +0100
committerNiall Sheridan <nsheridan@gmail.com>2019-07-03 15:40:38 +0100
commit0bd454cc448b812da6c693b451d86ff4cadbb6b2 (patch)
treee6dfcf2f9c1ea5febd42eab84a5abd759556c22b /Makefile
parentc5ec176a1cfba4f170991ca7bf6296185b10f565 (diff)
Use the static container image
This includes ca-certs in the docker image Fixes #82
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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