From 46e169541635744cc929d842c5c08e985dc83902 Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Thu, 7 Jan 2021 13:52:42 +0100 Subject: [PATCH 1/2] Update version of cosmwasm lib --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4fc2dacda6..ac35cc8051 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,8 +15,8 @@ WORKDIR /code COPY . /code/ # See https://github.com/CosmWasm/wasmvm/releases -ADD https://github.com/CosmWasm/wasmvm/releases/download/v0.12.0/libwasmvm_muslc.a /lib/libwasmvm_muslc.a -RUN sha256sum /lib/libwasmvm_muslc.a | grep 00ee24fefe094d919f5f83bf1b32948b1083245479dad8ccd5654c7204827765 +ADD https://github.com/CosmWasm/wasmvm/releases/download/v0.13.0/libwasmvm_muslc.a /lib/libwasmvm_muslc.a +RUN sha256sum /lib/libwasmvm_muslc.a | grep 39dc389cc6b556280cbeaebeda2b62cf884993137b83f90d1398ac47d09d3900 # force it to use static lib (from above) not standard libgo_cosmwasm.so file RUN LEDGER_ENABLED=false BUILD_TAGS=muslc make build From 841ca40adb5b6a6f2c7bc2d665edce2a75e3fcb6 Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Thu, 7 Jan 2021 13:52:54 +0100 Subject: [PATCH 2/2] Update default command to show the version properly --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ac35cc8051..0971ddbf62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,4 +45,4 @@ EXPOSE 26656 # tendermint rpc EXPOSE 26657 -CMD ["/usr/bin/wasmd version"] \ No newline at end of file +CMD ["/usr/bin/wasmd", "version"] \ No newline at end of file