diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 84d44ea..37dd7a5 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -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) @@ -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`).