Add Geckodriver installation to Dockerfile

This commit is contained in:
Michael Mintz 2017-03-09 23:59:03 -05:00
parent fafc3fbb26
commit cb16263e2f
1 changed files with 13 additions and 0 deletions

View File

@ -73,6 +73,17 @@ RUN apt-get -qy --no-install-recommends install \
&& ln -s /opt/firefox/firefox /usr/bin/firefox \ && ln -s /opt/firefox/firefox /usr/bin/firefox \
&& rm -f /tmp/firefox-esr.tar.bz2 && rm -f /tmp/firefox-esr.tar.bz2
#======================================
# Install Geckodriver / Firefox Driver
#======================================
RUN export BASE_URL=https://github.com/mozilla/geckodriver/releases/download \
&& export VERSION=$(curl -sL \
https://api.github.com/repos/mozilla/geckodriver/releases/latest | \
grep tag_name | cut -d '"' -f 4) \
&& curl -sL \
$BASE_URL/$VERSION/geckodriver-$VERSION-linux64.tar.gz | tar -xz \
&& mv geckodriver /usr/local/bin/geckodriver
#=================== #===================
# Install PhantomJS # Install PhantomJS
#=================== #===================
@ -98,6 +109,8 @@ COPY seleniumbase /SeleniumBase/seleniumbase/
COPY examples /SeleniumBase/examples/ COPY examples /SeleniumBase/examples/
COPY requirements.txt /SeleniumBase/requirements.txt COPY requirements.txt /SeleniumBase/requirements.txt
COPY setup.py /SeleniumBase/setup.py COPY setup.py /SeleniumBase/setup.py
RUN pip install --upgrade pip
RUN pip install --upgrade setuptools
RUN cd /SeleniumBase && ls && pip install -r requirements.txt RUN cd /SeleniumBase && ls && pip install -r requirements.txt
#========================================== #==========================================