diff options
author | Stan Hu <stanhu@gmail.com> | 2019-04-12 00:46:17 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-04-12 00:46:17 -0700 |
commit | 84d6dd3ea3146e54a47791c029528e7004cd6a0e (patch) | |
tree | c39f6d946e260e71b4c18c0602a59249842be20b /qa | |
parent | 74eb85120e76d93a07a2b9fb222321b4b988fe0a (diff) | |
download | gitlab-ce-84d6dd3ea3146e54a47791c029528e7004cd6a0e.tar.gz |
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
Diffstat (limited to 'qa')
-rw-r--r-- | qa/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |