From 1f73fe9a31c8d41e680ebf6e25fa88008c5c37ae Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sat, 11 May 2024 21:08:55 +0200 Subject: [PATCH] Dockerfile: try full nodejs 22 build --- Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index c679815c..e5eb4cae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,4 @@ -# As a workaround we have to build on nodejs 18 -# nodejs 22 hangs on build with armv6/armv7 -FROM docker.io/library/node:18-alpine AS build_node_modules - -# Update npm to latest -RUN npm install -g npm@latest +FROM docker.io/library/node:22-alpine AS build_node_modules # Copy Web UI COPY src /app