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
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24-alpine@sha256:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd AS build
FROM node:25-alpine@sha256:bdf2cca6fe3dabd014ea60163eca3f0f7015fbd5c7ee1b0e9ccb4ced6eb02ef4 AS build

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 Do not build artifacts with EOL Node 25

As of July 31, 2026, the official Node release table marks v25 as EOL while v24 remains LTS (https://nodejs.org/en/about/previous-releases), so this build stage would install dependencies and generate the static site with an unsupported runtime. The rest of the repo also still enforces the Node-24 toolchain (tests/config/toolchain-versions.test.ts expects this Dockerfile to contain node:24-alpine, and CI runs pnpm verify), so this single-line Docker dependency bump is both non-releasable and a downgrade in security support; keep 24 or move every manifest/workflow/test to a supported line together.

Useful? React with 👍 / 👎.


WORKDIR /workspace
ENV ASTRO_TELEMETRY_DISABLED=1
Expand Down
Loading