update frontend nodejs version to current LTS

This commit is contained in:
Merlin Scheurer 2026-04-05 11:20:40 +02:00
parent 21c2d5a4de
commit d4013622cb
2 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
# multi stage to build tube archivist
# build python wheel, download and extract ffmpeg, copy into final image
FROM node:22.13.0-alpine AS npm-builder
FROM node:24.14.1-alpine AS npm-builder
COPY frontend/package.json frontend/package-lock.json /
RUN npm i
FROM node:22.13.0-alpine AS node-builder
FROM node:24.14.1-alpine AS node-builder
# RUN npm config set registry https://registry.npmjs.org/

View File

@ -1 +1 @@
22.13.0
24.14.1