Bump to Chrome V66 and tie ChromeDriver version to each version of Chrome

This commit is contained in:
Stan Hu 2018-05-19 05:58:22 -07:00
parent 074863eb8c
commit 6c649b55fb
4 changed files with 35 additions and 15 deletions

View file

@ -21,7 +21,8 @@ RUN if [ -n "$GIT_VERSION" ]; then /scripts/install-git && git --version; fi
# Chrome
ARG CHROME_VERSION
RUN if [ -n "$CHROME_VERSION" ]; then /scripts/install-chrome $CHROME_VERSION && google-chrome --version; fi
ARG CHROME_DRIVER_VERSION
RUN if [ -n "$CHROME_VERSION" ]; then /scripts/install-chrome $CHROME_VERSION $CHROME_DRIVER_VERSION && google-chrome --version; fi
# PhantomJS
ARG PHANTOMJS_VERSION