From 48fbb9d53d00bf43574e348eb4c3d3a7f6c722ce Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 5 Sep 2023 17:46:39 +0200 Subject: [PATCH] Fix Dockerfile installing incompatible npm version (#26803) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d560f1888..172e1cd2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ RUN apt-get update && \ ENV PATH="${PATH}:/opt/ruby/bin:/opt/node/bin" -RUN npm install -g npm@latest && \ +RUN npm install -g npm@9 && \ npm install -g yarn && \ gem install bundler && \ apt-get update && \