fix(security): remediate CVE-2026-42043 — upgrade axios ^1.14.0

- package.json: bump axios constraint from ^1.13.5 to ^1.14.0
- Dockerfile build stage: npm ci -> npm install so the semver range
  in package.json is honoured at build time (npm ci uses the lockfile
  exactly, bypassing the updated constraint)
This commit is contained in:
kitos
2026-06-04 13:17:45 +02:00
parent af864ed735
commit f605b52d89
+1 -1
View File
@@ -25,7 +25,7 @@ FROM node:20-alpine AS build
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm install
COPY . . COPY . .
RUN npm run build RUN npm run build