Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Keep the Docker base on Node 22 because the official Node 24/25 slim images
# no longer publish linux/arm/v7 manifests, which breaks our armv7 Docker jobs.
FROM node:22-bookworm-slim AS builder
FROM node:26-bookworm-slim AS builder
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep an armv7-capable Node base image

When the existing CI/release Docker matrix builds linux/arm/v7 (.github/workflows/ci.yml and release.yml both still include arch: armv7), Buildx has to resolve this FROM image for arm/v7 before any Dockerfile logic runs. The file comment and the checked-in guard test (scripts/dev/docker.workflow.test.ts, uses an armv7-capable node base image) document that the Node 22 slim base is intentional for those armv7 jobs, and this change makes that test fail while leaving the armv7 publish path enabled.

Useful? React with 👍 / 👎.


WORKDIR /app

Expand All @@ -18,7 +18,7 @@ COPY . .
RUN npm run build:web && npm run build:server
RUN npm prune --omit=dev --no-audit --no-fund

FROM node:22-bookworm-slim
FROM node:26-bookworm-slim

WORKDIR /app

Expand Down
Loading