Browse Source

Install nodejs to Dockerfile we use in Compose-Web-Linux build (#5144)

pull/5145/head
Shagen Ogandzhanian 2 months ago committed by GitHub
parent
commit
b908d6b0c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      ci/docker/compose-web/Dockerfile

4
ci/docker/compose-web/Dockerfile

@ -14,6 +14,10 @@ RUN dpkg --add-architecture i386 && apt-get update -yqq && apt-get install -y \
wget \ wget \
xvfb xvfb
RUN apt-get update -yqq \
&& wget -qO- https://deb.nodesource.com/gpgkey/nodesource.gpg.key \
&& wget -qO- https://deb.nodesource.com/setup_22.x | bash - \
&& apt-get install -y nodejs
ARG CHROME_VERSION="google-chrome-stable" ARG CHROME_VERSION="google-chrome-stable"
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -

Loading…
Cancel
Save