From 26121d516eae4f2c2f97963b3b8999961853aedc Mon Sep 17 00:00:00 2001 From: rbajollari Date: Mon, 25 Sep 2023 16:05:31 -0400 Subject: [PATCH] fix DockerFile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ab1feeab..d717be21 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Builder -FROM golang:1.19-alpine AS builder +FROM golang:1.20-alpine AS builder RUN apk add --no-cache \ ca-certificates \ @@ -18,7 +18,7 @@ RUN WASMVM_VERSION=$(go list -m github.com/CosmWasm/wasmvm | cut -d ' ' -f 2) && -O /lib/libwasmvm_muslc.a && \ # verify checksum 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 $(uname -m) | cut -d ' ' -f 1) + sha256sum /lib/libwasmvm_muslc.a | grep $(cat /tmp/checksums.txt | grep $(uname -m).a | cut -d ' ' -f 1) COPY . . RUN LEDGER_ENABLED=false BUILD_TAGS=muslc LINK_STATICALLY=true make build