Skip to content
Open
Show file tree
Hide file tree
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Development Dockerfile
# Based on Node.js 22 LTS Alpine (minimal, fast)
FROM node:22-alpine
FROM node:25-alpine

# Set working directory
WORKDIR /app
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
# requires glibc (not musl) for native binaries

# Stage 1: Install production dependencies only
FROM node:22-slim AS deps
FROM node:25-slim AS deps
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev --ignore-scripts

# Stage 2: Build application
FROM node:22-slim AS builder
FROM node:25-slim AS builder
WORKDIR /app

# Install all dependencies (including dev)
Expand All @@ -32,7 +32,7 @@ RUN npx prisma generate
RUN npm run build

# Stage 3: Production runtime (minimal image)
FROM node:22-slim AS runner
FROM node:25-slim AS runner
WORKDIR /app

# Set production environment
Expand Down
Loading