From 8e6398a0a1f03d9425ab011df7299fa4ae5e0abd Mon Sep 17 00:00:00 2001 From: Grzegorz Bizon Date: Fri, 12 Apr 2019 08:36:17 +0000 Subject: [PATCH] Merge branch 'sh-allow-unauth-chrome' into 'master' Allow unauthenticated downloads of Chrome Closes #60441 See merge request gitlab-org/gitlab-ce!27297 (cherry picked from commit 026c92d5fa82fac87386d5691c3d5b1e02f2eb5e) 84d6dd3e Allow unauthenticated downloads of Chrome --- qa/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/Dockerfile b/qa/Dockerfile index ca7f9accb70..ae3ec2acfdf 100644 --- a/qa/Dockerfile +++ b/qa/Dockerfile @@ -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 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 -- GitLab