From 84d6dd3ea3146e54a47791c029528e7004cd6a0e Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Fri, 12 Apr 2019 00:46:17 -0700 Subject: Allow unauthenticated downloads of Chrome The Google GPG key used to sign the apt repository expired today, so all installs will fail unless `--allow-unauthenticated` is used. We should revert this once the repository has been updated with the more recent key. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/60441 --- 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 -- cgit v1.2.1