Skip to content

chore(deps): bump node from 18-alpine to 26-alpine#25

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/docker/node-26-alpine
Open

chore(deps): bump node from 18-alpine to 26-alpine#25
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/docker/node-26-alpine

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 11, 2026

Copy link
Copy Markdown

Bumps node from 18-alpine to 26-alpine.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps node from 18-alpine to 26-alpine.

---
updated-dependencies:
- dependency-name: node
  dependency-version: 26-alpine
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github May 11, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: automated, dependencies, docker. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@vercel

vercel Bot commented May 11, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
fusiontik Ready Ready Preview, Comment May 11, 2026 2:21am

@ghost

ghost commented May 11, 2026

Copy link
Copy Markdown

Rooviewer Clock   See task

This PR jumps from Node 18-alpine to 26-alpine, skipping three major versions. Two concerns worth addressing before merging:

  • Node 26 is not LTS. It is a "Current" release and won't enter LTS until ~October 2027. Consider targeting node:22-alpine or node:24-alpine for production stability.
  • Verify corepack enable pnpm still works. Corepack's bundling status has been evolving across Node versions. If it is no longer bundled in Node 26, the Docker build will fail at RUN corepack enable pnpm (lines 12 and 44). May need npm install -g corepack as a prerequisite.

Mention @roomote in a comment to request specific changes to this pull request or fix all unresolved issues.

Comment thread Dockerfile
# Stage 1: Dependencies
# ============================================================
FROM node:18-alpine AS deps
FROM node:26-alpine AS deps

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Node 26 is a "Current" release, not LTS. It won't enter LTS until around October 2027. For a production Docker image, using a non-LTS version means shorter support windows and higher risk of instability. The jump from 18 directly to 26 also skips three major versions (20, 22, 24), which compounds the risk of breaking changes in native modules, APIs, or dependency compatibility. Consider targeting node:22-alpine or node:24-alpine (both LTS) instead.

Suggested change
FROM node:26-alpine AS deps
FROM node:22-alpine AS deps

Fix it with Roo Code or mention @roomote and request a fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants