Skip to content

Commit

Permalink
fix: Dockerfile.nonroot
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrajovic committed Oct 7, 2024
1 parent e6cdf78 commit 1c63813
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Dockerfile.nonroot
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
#install packages for build layer
FROM golang:1.19-alpine as builder
FROM golang:1.22-alpine as builder

ADD https://github.com/CosmWasm/wasmvm/releases/download/v1.2.3/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a
ADD https://github.com/CosmWasm/wasmvm/releases/download/v1.2.3/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a
RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep d6904bc0082d6510f1e032fc1fd55ffadc9378d963e199afe0f93dd2667c0160
RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep bb8ffda690b15765c396266721e45516cb3021146fd4de46f7daeda5b0d82c86
ADD https://github.com/CosmWasm/wasmvm/releases/download/v2.1.2/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a
ADD https://github.com/CosmWasm/wasmvm/releases/download/v2.1.2/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a

RUN apk add --no-cache git gcc make perl jq libc-dev linux-headers

Expand Down

0 comments on commit 1c63813

Please sign in to comment.