Skip to content
Open
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 @@ -2,7 +2,7 @@
# Multi-stage build for optimized production image

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

Expand All @@ -18,7 +18,7 @@ COPY pnpm-workspace.yaml ./
RUN pnpm install --frozen-lockfile

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

# Install pnpm
Expand All @@ -36,7 +36,7 @@ ENV NODE_ENV=production
RUN pnpm build

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

ENV NODE_ENV=production
Expand Down
Loading