summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-06-21 14:15:48 -0500
committerMike Greiling <mike@pixelcog.com>2017-06-21 14:15:48 -0500
commitbd12e1c85929c799885207f89ced4905184e3bb5 (patch)
tree7f3c9e4b87bfc878776126af3ccfa508401496ab
parent59d940661fe939b169a2ab7c105f410b8d53c35d (diff)
downloadgitlab-ce-bd12e1c85929c799885207f89ced4905184e3bb5.tar.gz
rename DRIVER_VERSION environment variable to CHROME_DRIVER_VERSION
-rw-r--r--qa/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/Dockerfile b/qa/Dockerfile
index 016dc5347bb..6afb614cc62 100644
--- a/qa/Dockerfile
+++ b/qa/Dockerfile
@@ -2,7 +2,7 @@ FROM ruby:2.3
LABEL maintainer "Grzegorz Bizon <grzegorz@gitlab.com>"
ENV CHROME_VERSION 59.0.3071.104-1
-ENV DRIVER_VERSION 2.30
+ENV CHROME_DRIVER_VERSION 2.30
##
# Update APT sources and install some dependencies
@@ -20,7 +20,7 @@ RUN apt-get update -q && DEBIAN_FRONTEND=noninteractive apt-get install -y googl
##
# Install chromedriver to make it work with Selenium
#
-RUN wget -q https://chromedriver.storage.googleapis.com/$DRIVER_VERSION/chromedriver_linux64.zip
+RUN wget -q https://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip
RUN unzip chromedriver_linux64.zip -d /usr/local/bin
RUN apt-get clean