From 6b4e3253c4b207c68d7f16f84aba654c83c23edf Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Thu, 9 May 2024 13:12:25 +0200 Subject: [PATCH] ensure we use the patched npm cli of latest nodejs in build progress We have to track the version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 357ca108..c90ca94b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM docker.io/library/node:18-alpine AS build_node_modules # Update npm to latest version -RUN npm install -g npm@latest +RUN npm install -g npm@10.5.2 # Copy Web UI COPY src /app