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
4 changes: 2 additions & 2 deletions apps/webhook-receiver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Optimized for fast startup and small image size.

# Build stage
FROM node:20-alpine AS builder
FROM node:25-alpine AS builder
Copy link

Choose a reason for hiding this comment

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

This upgrade creates version inconsistency across the project:

  • Root package.json specifies "engines": { "node": ">=20.0.0" }
  • CLAUDE.md documents "Node 20+" as requirement
  • All other Dockerfiles use node:20-alpine
  • CI/CD workflows use NODE_VERSION: '20'

Node 25 is a major version jump that may introduce breaking changes. Consider:

  1. Update root package.json engines field to >=25.0.0 if adopting Node 25
  2. Update all other Dockerfiles to Node 25 for consistency
  3. Update CI/CD workflow NODE_VERSION variables
  4. Test thoroughly for compatibility issues with dependencies


WORKDIR /app

Expand Down Expand Up @@ -43,7 +43,7 @@ RUN npm run build --workspace=@gwi/core
RUN npm run build --workspace=@gwi/webhook-receiver

# Production stage
FROM node:20-alpine AS runner
FROM node:25-alpine AS runner

WORKDIR /app

Expand Down
Loading