Browse Source

Fix Dockerfile installing incompatible npm version (#26803)

pull/1341/head
Claire 3 years ago committed by GitHub
parent
commit
86a31fc019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Dockerfile

2
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 && \

Loading…
Cancel
Save