Skip to content
Closed
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 apps/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ COPY packages/files/src/project-file-proxy-path.ts packages/files/src/project-fi
WORKDIR /app/apps/frontend
RUN bun run build

FROM node:24-alpine AS runner
FROM node:26-alpine AS runner

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P2 Node 26 is still in Current (non-LTS) status

Node 26 was released in April 2026 and won't enter LTS until October 2026. Production images typically pin to an LTS release for longer support and stability guarantees. If the goal is to stay on an actively-maintained LTS, node:22-alpine (LTS through April 2027) or staying on node:24-alpine (LTS through April 2028) would be the safer choices until Node 26 enters LTS in October 2026.

Prompt To Fix With AI
This is a comment left during a code review.
Path: apps/frontend/Dockerfile
Line: 51

Comment:
**Node 26 is still in Current (non-LTS) status**

Node 26 was released in April 2026 and won't enter LTS until October 2026. Production images typically pin to an LTS release for longer support and stability guarantees. If the goal is to stay on an actively-maintained LTS, `node:22-alpine` (LTS through April 2027) or staying on `node:24-alpine` (LTS through April 2028) would be the safer choices until Node 26 enters LTS in October 2026.

How can I resolve this? If you propose a fix, please make it concise.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Fix in Claude Code Fix in Codex

WORKDIR /app

ARG BUILD_LABEL=
Expand Down