Skip to content
Snippets Groups Projects
Unverified Commit 1e2ad282 authored by Koen Kanters's avatar Koen Kanters Committed by GitHub
Browse files

fix: Use Alpine 3.21 for arm v6 and v7 (#25417)

parent 8a9f6319
Branches jumpGam_Implementation
Tags
No related merge requests found
ARG TARGETPLATFORM ARG TARGETPLATFORM
# Need to use Alpine 3.18.4 which uses Node 18 for arm/v6 and arm/v7, otherwise the build hangs. FROM alpine:3.21 AS base
# See https://github.com/nodejs/docker-node/issues/2077
FROM alpine:3.18.4 AS linux-arm-alpine
FROM alpine:3.21 AS linux-arm64-alpine
FROM alpine:3.21 AS linux-amd64-alpine
FROM alpine:3.21 AS linux-riscv64-alpine
FROM alpine:3.21 AS linux-386-alpine
FROM linux-${TARGETARCH}-alpine AS base
ENV NODE_ENV=production ENV NODE_ENV=production
WORKDIR /app WORKDIR /app
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment