14407: Add geckodriver to arvbox image.
authorTom Clegg <tclegg@veritasgenetics.com>
Thu, 25 Oct 2018 19:56:43 +0000 (15:56 -0400)
committerTom Clegg <tclegg@veritasgenetics.com>
Thu, 25 Oct 2018 19:56:43 +0000 (15:56 -0400)
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg@veritasgenetics.com>

tools/arvbox/lib/arvbox/docker/Dockerfile.base

index 374692689a7027544bd26e4233c4b65dd4e00189..b7b53591d1b8189abcb4dfcc76431f33bc273301 100644 (file)
@@ -71,6 +71,10 @@ RUN set -e && \
  curl -L -f ${PJSURL} | tar -C /usr/local -xjf - && \
  ln -s ../phantomjs-${PJSVERSION}-linux-x86_64/bin/phantomjs /usr/local/bin
 
+ENV GDVERSION=v0.23.0
+ENV GDURL=https://github.com/mozilla/geckodriver/releases/download/$GDVERSION/geckodriver-$GDVERSION-linux64.tar.gz
+RUN set -e && curl -L -f ${GDURL} | tar -C /usr/local/bin -xzf - geckodriver
+
 RUN pip install -U setuptools
 
 ENV NODEVERSION v6.11.4