Skip to content

Commit a1cd51f

Browse files
authored
Fix wasmvm SIGABRT regression (#227)
* Rebuild xiond Docker image with alpine3.20 * Builder alpine3.18 / Runner alpine3.19
1 parent bc91ddb commit a1cd51f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# syntax=docker/dockerfile:1
22

33
ARG GO_VERSION="1.22"
4-
ARG ALPINE_VERSION="3.19"
4+
ARG ALPINE_VERSION_BUILDER="3.18"
5+
ARG ALPINE_VERSION_RUNNER="3.19"
56
ARG BUILDPLATFORM=linux/amd64
6-
ARG BASE_IMAGE="golang:${GO_VERSION}-alpine${ALPINE_VERSION}"
7+
ARG BASE_IMAGE="golang:${GO_VERSION}-alpine${ALPINE_VERSION_BUILDER}"
78

89
# --------------------------------------------------------
910
# Builder
@@ -43,7 +44,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
4344
# Runner
4445
# --------------------------------------------------------
4546

46-
FROM alpine:3.19 AS xion-base
47+
FROM alpine:${ALPINE_VERSION_RUNNER} AS xion-base
4748
COPY --from=builder /xion/build/xiond /usr/bin/xiond
4849

4950
# api

0 commit comments

Comments
 (0)