From 985352e5c58738df867b990f0c7d70974128fdd7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 23 Jan 2026 21:59:06 +0000 Subject: [PATCH] Update Node.js to v24 Signed-off-by: Renovate Bot --- frontend/Containerfile | 6 +++--- frontend/package-lock.json | 16 ++++++++-------- frontend/package.json | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/frontend/Containerfile b/frontend/Containerfile index 12d0cc2b..63902a76 100644 --- a/frontend/Containerfile +++ b/frontend/Containerfile @@ -1,10 +1,10 @@ # Multi-stage build for production-ready Next.js application -FROM node:22-alpine AS dependencies +FROM node:24-alpine AS dependencies WORKDIR /app COPY package.json package-lock.json ./ RUN npm ci --only=production -FROM node:22-alpine AS build +FROM node:24-alpine AS build WORKDIR /app COPY package.json package-lock.json ./ RUN npm ci @@ -12,7 +12,7 @@ COPY . . ENV NEXT_TELEMETRY_DISABLED=1 RUN npm run build -FROM node:22-alpine AS runner +FROM node:24-alpine AS runner WORKDIR /app ENV NODE_ENV=production diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 8fd987d4..223a8b1c 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -22,7 +22,7 @@ }, "devDependencies": { "@eslint/eslintrc": "^3", - "@types/node": "^22.0.0", + "@types/node": "^24.0.0", "@types/react": "^19", "@types/react-dom": "^19", "autoprefixer": "^10.4.21", @@ -1347,13 +1347,13 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "22.19.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.7.tgz", - "integrity": "sha512-MciR4AKGHWl7xwxkBa6xUGxQJ4VBOmPTF7sL+iGzuahOFaO0jHCsuEfS80pan1ef4gWId1oWOweIhrDEYLuaOw==", + "version": "24.10.9", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.9.tgz", + "integrity": "sha512-ne4A0IpG3+2ETuREInjPNhUGis1SFjv1d5asp8MzEAGtOZeTeHVDOYqOgqfhvseqg/iXty2hjBf1zAOb7RNiNw==", "dev": true, "license": "MIT", "dependencies": { - "undici-types": "~6.21.0" + "undici-types": "~7.16.0" } }, "node_modules/@types/react": { @@ -6205,9 +6205,9 @@ } }, "node_modules/undici-types": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", - "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", "dev": true, "license": "MIT" }, diff --git a/frontend/package.json b/frontend/package.json index bafe670c..c26646db 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -23,7 +23,7 @@ }, "devDependencies": { "@eslint/eslintrc": "^3", - "@types/node": "^22.0.0", + "@types/node": "^24.0.0", "@types/react": "^19", "@types/react-dom": "^19", "autoprefixer": "^10.4.21",