Skip to content

Commit d4bef00

Browse files
Update Node.js to v24 (#1956)
Signed-off-by: Renovate Bot <bot@renovateapp.com>
1 parent 70494d4 commit d4bef00

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

frontend/Containerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Multi-stage build for production-ready Next.js application
2-
FROM node:22-alpine AS dependencies
2+
FROM node:24-alpine AS dependencies
33
WORKDIR /app
44
COPY package.json package-lock.json ./
55
RUN npm ci --only=production
66

7-
FROM node:22-alpine AS build
7+
FROM node:24-alpine AS build
88
WORKDIR /app
99
COPY package.json package-lock.json ./
1010
RUN npm ci
1111
COPY . .
1212
ENV NEXT_TELEMETRY_DISABLED=1
1313
RUN npm run build
1414

15-
FROM node:22-alpine AS runner
15+
FROM node:24-alpine AS runner
1616
WORKDIR /app
1717

1818
ENV NODE_ENV=production

frontend/package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"devDependencies": {
2525
"@eslint/eslintrc": "^3",
26-
"@types/node": "^22.0.0",
26+
"@types/node": "^24.0.0",
2727
"@types/react": "^19",
2828
"@types/react-dom": "^19",
2929
"autoprefixer": "^10.4.21",

0 commit comments

Comments
 (0)