Skip to content

Commit 709b523

Browse files
committed
Update the sample Dockerfile
1 parent 8cb2868 commit 709b523

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Dockerfile

+3-5
Original file line numberDiff line numberDiff line change
@@ -79,17 +79,15 @@ COPY requirements.txt /SeleniumBase/requirements.txt
7979
COPY setup.py /SeleniumBase/setup.py
8080
RUN find . -name '*.pyc' -delete
8181
RUN find . -name __pycache__ -delete
82-
RUN pip3 install --upgrade pip
83-
RUN pip3 install --upgrade setuptools
84-
RUN pip3 install --upgrade setuptools-scm
82+
RUN pip3 install --upgrade pip setuptools wheel
8583
RUN cd /SeleniumBase && ls && pip3 install -r requirements.txt --upgrade
8684
RUN cd /SeleniumBase && pip3 install .
8785

8886
#=====================
8987
# Download WebDrivers
9088
#=====================
91-
RUN wget https://github.com/mozilla/geckodriver/releases/download/v0.33.0/geckodriver-v0.33.0-linux64.tar.gz
92-
RUN tar -xvzf geckodriver-v0.33.0-linux64.tar.gz
89+
RUN wget https://github.com/mozilla/geckodriver/releases/download/v0.34.0/geckodriver-v0.34.0-linux64.tar.gz
90+
RUN tar -xvzf geckodriver-v0.34.0-linux64.tar.gz
9391
RUN chmod +x geckodriver
9492
RUN mv geckodriver /usr/local/bin/
9593
RUN wget https://chromedriver.storage.googleapis.com/72.0.3626.69/chromedriver_linux64.zip

0 commit comments

Comments
 (0)