Updated Node.js version in Dockerfiles

The Node.js version used in the Dockerfiles has been updated from 20 to 22. This change affects both the main Dockerfile and the web UI Dockerfile.
This commit is contained in:
Jeroen De Meerleer 2024-10-10 12:34:02 +02:00
parent 34db79b3ab
commit 9e52b3bec6
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM node:20 as nodebuilder
FROM node:22 AS nodebuilder
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && apt-get install -y git

View File

@ -1,4 +1,4 @@
FROM node:20 as nodebuilder
FROM node:22 AS nodebuilder
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && apt-get install -y git