Commit bd12e1c8 authored by Mike Greiling's avatar Mike Greiling

rename DRIVER_VERSION environment variable to CHROME_DRIVER_VERSION

parent 59d94066
...@@ -2,7 +2,7 @@ FROM ruby:2.3 ...@@ -2,7 +2,7 @@ FROM ruby:2.3
LABEL maintainer "Grzegorz Bizon <grzegorz@gitlab.com>" LABEL maintainer "Grzegorz Bizon <grzegorz@gitlab.com>"
ENV CHROME_VERSION 59.0.3071.104-1 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 # Update APT sources and install some dependencies
...@@ -20,7 +20,7 @@ RUN apt-get update -q && DEBIAN_FRONTEND=noninteractive apt-get install -y googl ...@@ -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 # 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 unzip chromedriver_linux64.zip -d /usr/local/bin
RUN apt-get clean RUN apt-get clean
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment