Skip to content

Commit

Permalink
fix docker checksums
Browse files Browse the repository at this point in the history
  • Loading branch information
jhernandezb committed Feb 22, 2024
1 parent b9eecfd commit 5fbfd43
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
Expand Up @@ -6,7 +6,7 @@
# show version: docker run --rm noislabs/noisd:manual
# libwasmvm version: docker run --rm noislabs/noisd:manual noisd query wasm libwasmvm-version
# shell: docker run --rm -it noislabs/noisd:manual sh
FROM golang:1.20.2-alpine3.17 AS go-builder
FROM golang:1.21.5-alpine3.17 AS go-builder

# this comes from standard alpine nightly file
# https://github.com/rust-lang/docker-rust-nightly/blob/master/alpine3.12/Dockerfile
Expand All @@ -24,10 +24,10 @@ RUN APK_ARCH="$(apk --print-arch)"; \
case "$APK_ARCH" in \
aarch64) \
wget -O /lib/libwasmvm_muslc.a https://github.com/CosmWasm/wasmvm/releases/download/v1.5.2/libwasmvm_muslc.aarch64.a \
&& sha256sum /lib/libwasmvm_muslc.a | grep e660a38efb2930b34ee6f6b0bb12730adccb040b6ab701b8f82f34453a426ae7 ;; \
&& sha256sum /lib/libwasmvm_muslc.a | grep e78b224c15964817a3b75a40e59882b4d0e06fd055b39514d61646689cef8c6e ;; \
x86_64) \
wget -O /lib/libwasmvm_muslc.a https://github.com/CosmWasm/wasmvm/releases/download/v1.5.2/libwasmvm_muslc.x86_64.a \
&& sha256sum /lib/libwasmvm_muslc.a | grep e78b224c15964817a3b75a40e59882b4d0e06fd055b39514d61646689cef8c6e ;; \
&& sha256sum /lib/libwasmvm_muslc.a | grep e660a38efb2930b34ee6f6b0bb12730adccb040b6ab701b8f82f34453a426ae7 ;; \
esac;

WORKDIR /code
Expand Down

0 comments on commit 5fbfd43

Please sign in to comment.