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 apps/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Runtime: non-root, standalone output, HEALTHCHECK, OCI labels.

# ---- Build stage ----
FROM node:24.12-alpine AS build
FROM node:26.8-alpine AS build
WORKDIR /src

# Copy ALL source first (workspace packages need their source for build)
Expand All @@ -17,7 +17,7 @@ RUN corepack enable && corepack prepare pnpm@11.0.9 --activate \
RUN pnpm --filter @nexora/web build

# ---- Runtime stage ----
FROM node:24.12-alpine AS runtime
FROM node:26.8-alpine AS runtime
WORKDIR /app

# Next's standalone output preserves the monorepo app path (`apps/web`).
Expand Down
Loading