Skip to content

Commit cd26aa0

Browse files
authored
chore: set CGO_ENABLED=0 to remove dependency on glibc versions (#36)
1 parent 2eaf138 commit cd26aa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ clean:
77
rm -rf build
88

99
build/envbox: $(GO_FILES)
10-
go build -o build/envbox ./cmd/envbox
10+
CGO_ENABLED=0 go build -o build/envbox ./cmd/envbox
1111

1212
.PHONY: build/image/envbox
1313
build/image/envbox: build/image/envbox/.ctx

0 commit comments

Comments
 (0)