summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mgreiling@gitlab.com>2017-06-09 20:23:18 +0000
committerMike Greiling <mike@pixelcog.com>2017-06-21 14:15:12 -0500
commitf736a03406e4e14b12f9d5d324d9b0b566a6514e (patch)
treeaffc171e30ef98c639a1668ab3969e58ba071c67
parentb303932ac973822c6c5f1bb20aec6a7729a40145 (diff)
downloadgitlab-ce-f736a03406e4e14b12f9d5d324d9b0b566a6514e.tar.gz
Update Dockerfile to utilize the stable release of Google Chrome 59
-rw-r--r--qa/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/Dockerfile b/qa/Dockerfile
index 9e2a74ef991..9146fc7e8be 100644
--- a/qa/Dockerfile
+++ b/qa/Dockerfile
@@ -8,10 +8,10 @@ RUN sed -i "s/httpredir.debian.org/ftp.us.debian.org/" /etc/apt/sources.list
RUN apt-get update && apt-get install -y wget git unzip xvfb
##
-# At this point Google Chrome Beta is 59 - first version with headless support
+# Google Chrome 59 is the first version with headless support
#
-RUN wget -q https://dl.google.com/linux/direct/google-chrome-beta_current_amd64.deb
-RUN dpkg -i google-chrome-beta_current_amd64.deb; apt-get -fy install
+RUN wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_59.0.3071.86-1_amd64.deb
+RUN dpkg -i google-chrome-stable_59.0.3071.86-1_amd64.deb; apt-get -fy install
##
# Install chromedriver to make it work with Selenium