Skip to content

Commit 51c93ea

Browse files
committed
Update the Dockerfile
1 parent 2810360 commit 51c93ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,19 +83,19 @@ RUN pip3 install --upgrade pip
8383
RUN pip3 install --upgrade setuptools
8484
RUN pip3 install --upgrade setuptools-scm
8585
RUN cd /SeleniumBase && ls && pip3 install -r requirements.txt --upgrade
86-
RUN cd /SeleniumBase && python3 setup.py develop
86+
RUN cd /SeleniumBase && pip3 install .
8787

8888
#=====================
8989
# Download WebDrivers
9090
#=====================
91-
RUN wget https://github.com/mozilla/geckodriver/releases/download/v0.29.1/geckodriver-v0.29.1-linux32.tar.gz
92-
RUN tar -xvzf geckodriver-v0.29.1-linux32.tar.gz
91+
RUN wget https://github.com/mozilla/geckodriver/releases/download/v0.30.0/geckodriver-v0.30.0-linux32.tar.gz
92+
RUN tar -xvzf geckodriver-v0.30.0-linux32.tar.gz
9393
RUN chmod +x geckodriver
9494
RUN mv geckodriver /usr/local/bin/
9595
RUN wget https://chromedriver.storage.googleapis.com/2.44/chromedriver_linux64.zip
9696
RUN unzip chromedriver_linux64.zip
97+
RUN chmod +x chromedriver
9798
RUN mv chromedriver /usr/local/bin/
98-
RUN chmod +x /usr/bin/chromedriver
9999

100100
#==========================================
101101
# Create entrypoint and grab example tests

0 commit comments

Comments
 (0)