chore: Update dependencies

Bump Node to 24 in Dockerfile and Dockerfile.dev.
Bump sharp to 0.35, nodemailer to 9 and concurrently to 10.
Add overrides for body-parser, qs, multiparty, uuid, diff,
serialize-javascript, linkify-it and svgo to pull in security fixes
that upstream pins block.
Rename the sails patch to match 1.5.18.
This commit is contained in:
Daniel Hiller
2026-08-07 16:17:24 +02:00
parent 856768c45e
commit bec5dd1597
9 changed files with 3612 additions and 4502 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
# Stage 1: Server build
FROM node:22-alpine AS server
FROM node:24-alpine AS server
RUN apk -U upgrade \
&& apk add build-base python3 --no-cache
@@ -13,7 +13,7 @@ RUN npm install \
&& npm prune --production
# Stage 2: Client build
FROM node:22 AS client
FROM node:24 AS client
WORKDIR /app
@@ -24,7 +24,7 @@ RUN npm install npm --global \
&& INDEX_FORMAT=ejs DISABLE_ESLINT_PLUGIN=true npm run build
# Stage 3: Final image
FROM node:22-alpine
FROM node:24-alpine
RUN apk -U upgrade \
&& apk add bash python3 squid --no-cache