From e237b31dac13139f655e3a3082459b79d778fb07 Mon Sep 17 00:00:00 2001 From: AFCMS Date: Wed, 6 Mar 2024 15:26:20 +0100 Subject: [PATCH] Update NPM to fix https://github.com/npm/cli/issues/6684 --- frontend/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index c379a0f..72b3f61 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -2,6 +2,10 @@ FROM node:20-alpine3.19 as frontend-development +# Update NPM +# https://github.com/npm/cli/issues/6684 +RUN npm update -g npm + RUN mkdir /frontend WORKDIR /frontend