Merge pull request #14 from skoelle/renovate/node-24.x

Update dependency node to v24
This commit is contained in:
Stefan Koelle
2026-08-10 17:44:22 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: '22'
node-version: '24'
cache: 'npm'
cache-dependency-path: client/package-lock.json
+1 -1
View File
@@ -1,5 +1,5 @@
# Stage 1: React Frontend bauen
FROM node:22-alpine AS frontend
FROM node:24-alpine AS frontend
WORKDIR /app/client
COPY client/package.json client/package-lock.json ./
RUN npm ci