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 frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Dependencies stage: install node modules from the lockfile.
FROM node:22-alpine AS deps
FROM node:26-alpine AS deps
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm i

# Build stage: produce the standalone Next.js output.
FROM node:22-alpine AS build
FROM node:26-alpine AS build
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
Expand All @@ -20,7 +20,7 @@ ENV NEXT_TELEMETRY_DISABLED=1
RUN npm run build

# Runtime stage: minimal image running the standalone server.
FROM node:22-alpine AS runtime
FROM node:26-alpine AS runtime
WORKDIR /app
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
Expand Down
Loading