summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2023-09-05 17:46:39 +0200
committerGitHub <noreply@github.com>2023-09-05 17:46:39 +0200
commit86a31fc0196f876f6671a883198fcc460bcd60c5 (patch)
tree694b9e029b11768ecccdb3617d2e43a366c84d02
parent16e47e1aae55c0ead7207030ad8a554c18ff1250 (diff)
Fix Dockerfile installing incompatible npm version (#26803)v3.5.13
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 448c08dbd14..5ed36ad3eae 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 && \