fix: switch to nodejs 24

This commit is contained in:
2026-01-02 17:51:56 +01:00
parent 29fd909340
commit ff0fd1098b

View File

@@ -1,6 +1,6 @@
# Stage 1: Build Dependencies
# Use an official Node.js runtime as a parent image
FROM node:18-alpine AS builder
FROM node:24-alpine AS builder
WORKDIR /app
@@ -18,7 +18,7 @@ RUN npm ci --only=production
# REMOVED: RUN npm i oui (should be installed by npm ci now)
# Stage 2: Production Image
FROM node:18-alpine
FROM node:24-alpine
WORKDIR /app