summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2023-09-05 17:46:39 +0200
committerClaire <claire.github-309c@sitedethib.com>2023-09-05 18:51:01 +0200
commit48fbb9d53d00bf43574e348eb4c3d3a7f6c722ce (patch)
tree423afa1779b453556c7711161c1f5726ca1cc478
parentd3e97e8c237d87af23c65ed46ab7606f91e39318 (diff)
Fix Dockerfile installing incompatible npm version (#26803)
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index d560f188844..172e1cd2c18 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 && \