fix(security): remediate CVE-2026-42043 — upgrade axios ^1.14.0
Some checks failed
Aegis CI / lint-and-test (push) Has been cancelled

- 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)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
kitos
2026-06-04 13:17:45 +02:00
parent bea5a8e781
commit 498536f3f1

View File

@@ -25,7 +25,7 @@ FROM node:20-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install
COPY . .
RUN npm run build