fix: patch next security advisory

This commit is contained in:
Tom Boullay
2026-05-15 00:15:42 +02:00
parent be4cf502d1
commit 3fdbad7bdf
5 changed files with 113 additions and 105 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ FROM node:20-slim AS deps
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm ci --ignore-scripts
COPY package.json package-lock.json* .npmrc ./
RUN npm ci --ignore-scripts --no-audit --no-fund
# --- Stage 2: Build ----------------------------------------------------------
FROM node:20-slim AS builder