update to latest node and packages

This commit is contained in:
Julian Krauser 2025-04-21 13:30:11 +02:00
parent e3b5d74293
commit bb0d0170c8
4 changed files with 7885 additions and 4994 deletions

View file

@ -1,4 +1,4 @@
FROM node:18-alpine AS build
FROM node:22-alpine AS build
WORKDIR /app
@ -11,7 +11,7 @@ COPY . /app
ENV NODE_OPTIONS="--max-old-space-size=4096"
RUN npm run build
FROM node:18-alpine AS prod
FROM node:22-alpine AS prod
WORKDIR /app