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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# =============================================================================

# Stage 1: Dependencies
FROM node:20-alpine AS deps
FROM node:25-alpine AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app

Expand All @@ -15,7 +15,7 @@ COPY package.json package-lock.json* ./
RUN npm ci --only=production

# Stage 2: Builder
FROM node:20-alpine AS builder
FROM node:25-alpine AS builder
WORKDIR /app

# Copy dependencies from deps stage
Expand All @@ -30,7 +30,7 @@ ENV NODE_ENV=production
RUN npm run build

# Stage 3: Production Runner
FROM node:20-alpine AS runner
FROM node:25-alpine AS runner
WORKDIR /app

# Set environment variables
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Hot reload enabled with all development dependencies
# =============================================================================

FROM node:20-alpine
FROM node:25-alpine

WORKDIR /app

Expand Down
Loading