From d50530c0241eee2f5fe409a2ea505477bdc15bbd Mon Sep 17 00:00:00 2001 From: mamirpanah Date: Thu, 13 Feb 2025 23:16:34 +0000 Subject: [PATCH] fix: Dockerfile build without gcc --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b20852e7..392136fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN WASMVM_VERSION=$(go list -m github.com/CosmWasm/wasmvm | cut -d ' ' -f 2) && sha256sum /lib/libwasmvm_muslc.a | grep $(cat /tmp/checksums.txt | grep $(uname -m).a | cut -d ' ' -f 1) COPY . . -RUN LEDGER_ENABLED=false BUILD_TAGS=muslc LINK_STATICALLY=true make build +RUN LEDGER_ENABLED=false BUILD_TAGS=muslc CGO_ENABLED=0 LINK_STATICALLY=true make build # Runner FROM alpine