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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use Node.js 23 Alpine as the base image (upgraded from Node.js 20)
FROM node:24-alpine AS build
FROM node:25-alpine AS build

# Set working directory
WORKDIR /app
Expand Down Expand Up @@ -31,7 +31,7 @@ RUN addgroup -g 1001 -S nodejs && \
adduser -S nodejs -u 1001 -G nodejs

# Switch to production image for smaller footprint
FROM node:24-alpine AS production
FROM node:25-alpine AS production

# Set working directory
WORKDIR /app
Expand Down
Loading