We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca74aa9 commit dd2a704Copy full SHA for dd2a704
1 file changed
Makefile
@@ -51,7 +51,7 @@ clean: ## Removes existing build artifacts in order to get a fresh build
51
52
.PHONY: build
53
build: ## Build binary for linux stores it in the build/ dir
54
- GOOS=linux GOARCH=amd64 go build -o $(BUILD_PATH)/$(COMMAND) -ldflags "-X main.VERSION=$(VERSION)"
+ GOOS=linux CGO_ENABLED=0 GOARCH=amd64 go build -o $(BUILD_PATH)/$(COMMAND) -ldflags "-X main.VERSION=$(VERSION)"
55
56
.PHONY: package
57
package: build ## Build the linux binary and stores it in package/ dir
0 commit comments