Commit 026c92d5 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch 'sh-allow-unauth-chrome' into 'master'

Allow unauthenticated downloads of Chrome

Closes #60441

See merge request gitlab-org/gitlab-ce!27297
parents 8cda9d33 84d6dd3e
...@@ -30,7 +30,7 @@ RUN wget -q https://download.docker.com/linux/static/stable/x86_64/docker-17.09. ...@@ -30,7 +30,7 @@ RUN wget -q https://download.docker.com/linux/static/stable/x86_64/docker-17.09.
# #
RUN curl -sS -L https://dl.google.com/linux/linux_signing_key.pub | apt-key add - RUN curl -sS -L https://dl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list RUN echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list
RUN apt-get update -q && apt-get install -y google-chrome-stable && apt-get clean RUN apt-get update -q && apt-get install -y --allow-unauthenticated google-chrome-stable && apt-get clean
## ##
# Install chromedriver to make it work with Selenium # Install chromedriver to make it work with Selenium
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment