Skip to content

Commit

Permalink
Fix wasmvm SIGABRT regression (#227)
Browse files Browse the repository at this point in the history
* Rebuild xiond Docker image with alpine3.20

* Builder alpine3.18 / Runner alpine3.19
  • Loading branch information
froch authored Jul 18, 2024
1 parent bc91ddb commit a1cd51f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# syntax=docker/dockerfile:1

ARG GO_VERSION="1.22"
ARG ALPINE_VERSION="3.19"
ARG ALPINE_VERSION_BUILDER="3.18"
ARG ALPINE_VERSION_RUNNER="3.19"
ARG BUILDPLATFORM=linux/amd64
ARG BASE_IMAGE="golang:${GO_VERSION}-alpine${ALPINE_VERSION}"
ARG BASE_IMAGE="golang:${GO_VERSION}-alpine${ALPINE_VERSION_BUILDER}"

# --------------------------------------------------------
# Builder
Expand Down Expand Up @@ -43,7 +44,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
# Runner
# --------------------------------------------------------

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

# api
Expand Down

0 comments on commit a1cd51f

Please sign in to comment.