Skip to content

Commit

Permalink
chore: fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
albttx committed Aug 26, 2024
1 parent fd25f4e commit 83465e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
export ARCH=$(uname -m); \
WASM_VERSION=$(go list -m all | grep github.com/CosmWasm/wasmvm | awk '{print $2}'); \
[ -z ${WASM_VERSION} ] || wget -O /lib/libwasmvm_muslc.a https://github.com/CosmWasm/wasmvm/releases/download/${WASM_VERSION}/libwasmvm_muslc.${ARCH}.a; \
cp -v /lib/libwasmvm_muslc.a /lib/libwasmvm_muslc.${ARCH}.a; \
[ -f "/lib/libwasmvm_muslc.a" ] && cp -v /lib/libwasmvm_muslc.a /lib/libwasmvm_muslc.${ARCH}.a; \
go mod download;

# Build chain binary
Expand Down

0 comments on commit 83465e1

Please sign in to comment.