From 4889f1afae113512a9cce5dfa338f90691ff6e18 Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Sun, 1 Feb 2026 09:52:59 -0500 Subject: [PATCH] build static binary --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 202b2f0..c50ee9f 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ deps: $(GO) mod download build: deps - $(GO) build -ldflags "-X fes/modules/version.gitCommit=$(shell git rev-parse --short HEAD)" -o fes + CGO_ENABLED=0 $(GO) build -ldflags "-X fes/modules/version.gitCommit=$(shell git rev-parse --short HEAD)" -o fes @echo "Fes is now built to ./fes" lint: