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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Stage 1: shared-builder
# ============================================================================
# Runs once, produces both /app/dist (frontend) and /app/dist/server (backend)
FROM node:26.3.0-alpine AS shared-builder
FROM node:26.5.0-alpine AS shared-builder

WORKDIR /app

Expand Down Expand Up @@ -38,7 +38,7 @@ RUN npm ci --omit=dev --legacy-peer-deps
# ============================================================================
# Stage 2: api (Node.js production runtime)
# ============================================================================
FROM node:26.3.0-alpine AS api
FROM node:26.5.0-alpine AS api

# Install runtime utilities only (no build tools)
RUN apk add --no-cache dumb-init postgresql-client aws-cli docker-cli docker-cli-compose su-exec curl exiftool
Expand Down Expand Up @@ -128,7 +128,7 @@ CMD ["nginx", "-g", "daemon off;"]
# Builds the frontend with VITE_E2E=true (loaded from client/.env.e2e via
# --mode e2e). Kept separate so the production `shared-builder` stage is
# never tainted with test seams.
FROM node:26.3.0-alpine AS frontend-e2e-builder
FROM node:26.5.0-alpine AS frontend-e2e-builder

WORKDIR /app

Expand Down
Loading