From 86146ccc688d57354403ef53249d8328f8083fb5 Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Thu, 9 May 2024 20:00:36 +0200 Subject: [PATCH] Dockerfile: ensure to use latest npm cli --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a5957ab..ea500cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ # nodejs 20 hangs on build with armv6/armv7 FROM docker.io/library/node:18-alpine AS build_node_modules -# Update npm to patched version of latest nodejs lts -RUN npm install -g npm@10.5.2 +# Update npm to latest +RUN npm install -g npm@latest # Copy Web UI COPY src /app