From d0fcba7268a1611cfdc8a459ee3080400e1dad6c Mon Sep 17 00:00:00 2001 From: huynaism Date: Tue, 12 Nov 2024 21:50:29 +0700 Subject: [PATCH] fix shell error --- contrib/images/babylond/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/images/babylond/Dockerfile b/contrib/images/babylond/Dockerfile index 9cc995f77..62b57f2a9 100644 --- a/contrib/images/babylond/Dockerfile +++ b/contrib/images/babylond/Dockerfile @@ -32,7 +32,7 @@ RUN if [ -n "${VERSION}" ]; then \ fi # Cosmwasm - Download correct libwasmvm version -SHELL ["/bin/bash", "-o", "pipefail", "-c"] +SHELL ["/bin/ash", "-o", "pipefail", "-c"] RUN WASMVM_VERSION=$(go list -m github.com/CosmWasm/wasmvm/v2 | cut -d ' ' -f 2) && \ wget --progress=dot:giga https://github.com/CosmWasm/wasmvm/releases/download/$WASMVM_VERSION/libwasmvm_muslc."$(uname -m)".a \ -O /lib/libwasmvm_muslc."$(uname -m)".a && \