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

# ── Stage 1: base ─────────────────────────────────────────────
# Shared base with corepack-managed pnpm
FROM node:20-slim AS base
FROM node:26-slim AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable && corepack prepare pnpm@9.14.4 --activate
Expand Down Expand Up @@ -34,7 +34,7 @@ RUN pnpm prune --prod --ignore-scripts

# ── Stage 5: runtime ─────────────────────────────────────────
# Minimal final image — only build output + prod deps
FROM node:20-slim AS runtime
FROM node:26-slim AS runtime
ENV NODE_ENV="production"
ENV PORT="5173"
WORKDIR /app
Expand Down
Loading