Skip to content

Commit

Permalink
chore(cicd): update docker image config for v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Ixo committed Mar 22, 2024
1 parent 75a366e commit a161b2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# echo $(git describe --tags) | sed 's/^v//'
ARG GIT_VERSION="2.0.0-rc.0"
ARG GIT_VERSION="v3.0.0"
# git log -1 --format='%H'
ARG GIT_COMMIT="ca9e64cf2f8c29b8bb001281abcdcb942dc9fa01"
ARG GIT_COMMIT="75a366e5e652b4f48b12cdb8a3f0b64e5aefe374"

# --------------------------------------------------------
# Builder
Expand All @@ -23,7 +23,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \

# RUN ARCH=$(uname -m)
# Cosmwasm - Download correct libwasmvm version
RUN ARCH=x86_64 WASMVM_VERSION=$(go list -m github.com/CosmWasm/wasmvm | sed 's/.* //') && wget \
RUN ARCH=x86_64 && WASMVM_VERSION=$(go list -m github.com/CosmWasm/wasmvm | sed 's/.* //') && wget \
https://github.com/CosmWasm/wasmvm/releases/download/$WASMVM_VERSION/libwasmvm_muslc.$ARCH.a \
-O /lib/libwasmvm_muslc.a && wget https://github.com/CosmWasm/wasmvm/releases/download/$WASMVM_VERSION/checksums.txt \
-O /tmp/checksums.txt && sha256sum /lib/libwasmvm_muslc.a | grep $(cat /tmp/checksums.txt | grep libwasmvm_muslc.$ARCH | cut -d ' ' -f 1)
Expand Down

0 comments on commit a161b2e

Please sign in to comment.