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,10 +1,10 @@
FROM node:22-alpine AS deps
FROM node:26-alpine AS deps

Check notice

Code scanning / Trivy

No HEALTHCHECK defined Low

Artifact: frontend/Dockerfile
Type: dockerfile
Vulnerability DS-0026
Severity: LOW
Message: Add HEALTHCHECK instruction in your Dockerfile
Link: DS-0026
WORKDIR /app
ENV HUSKY=0
COPY package.json package-lock.json* ./
RUN npm ci

FROM node:22-alpine AS builder
FROM node:26-alpine AS builder
WORKDIR /app
ENV NEXT_TELEMETRY_DISABLED=1
ARG NEXT_PUBLIC_API_URL=/api
Expand All @@ -15,7 +15,7 @@
COPY . .
RUN npm run build

FROM node:22-alpine AS runner
FROM node:26-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production NEXT_TELEMETRY_DISABLED=1
ENV BACKEND_INTERNAL_URL=http://backend:8000
Expand Down
Loading