We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90fb45a commit 9211bfdCopy full SHA for 9211bfd
Dockerfile
@@ -1,13 +1,14 @@
1
#--- Build stage
2
FROM golang:1.23-alpine3.20 AS go-builder
3
4
+SHELL ["/bin/ash", "-o", "pipefail", "-c"]
5
WORKDIR /src
6
7
# CosmWasm: see https://github.com/CosmWasm/wasmvm/releases
8
ADD https://github.com/CosmWasm/wasmvm/releases/download/v2.1.2/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a
9
ADD https://github.com/CosmWasm/wasmvm/releases/download/v2.1.2/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a
10
-# hadolint ignore=DL4006,DL3018
11
+# hadolint ignore=DL3018
12
RUN set -eux \
13
&& apk add --no-cache ca-certificates build-base=0.5-r3 git=~2.45 linux-headers=6.6-r0 \
14
&& sha256sum /lib/libwasmvm_muslc.aarch64.a | grep 0881c5b463e89e229b06370e9e2961aec0a5c636772d5142c68d351564464a66 \
0 commit comments