File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
# --- Build stage
2
2
FROM golang:1.23-alpine3.20 AS go-builder
3
3
4
+ SHELL ["/bin/ash" , "-o" , "pipefail" , "-c" ]
4
5
WORKDIR /src
5
6
6
7
# CosmWasm: see https://github.com/CosmWasm/wasmvm/releases
7
8
ADD https://github.com/CosmWasm/wasmvm/releases/download/v2.1.2/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a
8
9
ADD https://github.com/CosmWasm/wasmvm/releases/download/v2.1.2/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a
9
10
10
- # hadolint ignore=DL4006, DL3018
11
- RUN set -eux \
12
- && apk add --no-cache ca-certificates build-base=0.5-r3 git=~2.45 linux-headers=6.6-r0 \
13
- && sha256sum /lib/libwasmvm_muslc.aarch64.a | grep 0881c5b463e89e229b06370e9e2961aec0a5c636772d5142c68d351564464a66 \
14
- && sha256sum /lib/libwasmvm_muslc.x86_64.a | grep 58e1f6bfa89ee390cb9abc69a5bc126029a497fe09dd399f38a82d0d86fe95ef
11
+ # hadolint ignore=DL3018
12
+ RUN \
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 \
15
+ sha256sum /lib/libwasmvm_muslc.x86_64.a | grep 58e1f6bfa89ee390cb9abc69a5bc126029a497fe09dd399f38a82d0d86fe95ef
15
16
16
17
COPY . /src/
17
18
You can’t perform that action at this time.
0 commit comments