Build static Go binary

Signed-off-by: Tamal Saha <tamal@appscode.com>
This commit is contained in:
Tamal Saha 2021-04-11 00:26:56 -07:00
parent 039feef938
commit 96f63d010c
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ deps:
# Build the backend to ./listmonk. # Build the backend to ./listmonk.
.PHONY: build .PHONY: build
build: build:
go build -o ${BIN} -ldflags="-s -w -X 'main.buildString=${BUILDSTR}' -X 'main.versionString=${VERSION}'" cmd/*.go CGO_ENABLED=0 go build -o ${BIN} -ldflags="-s -w -X 'main.buildString=${BUILDSTR}' -X 'main.versionString=${VERSION}'" cmd/*.go
# Run the backend. # Run the backend.
.PHONY: run .PHONY: run