File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -83,19 +83,19 @@ RUN pip3 install --upgrade pip
83
83
RUN pip3 install --upgrade setuptools
84
84
RUN pip3 install --upgrade setuptools-scm
85
85
RUN cd /SeleniumBase && ls && pip3 install -r requirements.txt --upgrade
86
- RUN cd /SeleniumBase && python3 setup.py develop
86
+ RUN cd /SeleniumBase && pip3 install .
87
87
88
88
# =====================
89
89
# Download WebDrivers
90
90
# =====================
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
93
93
RUN chmod +x geckodriver
94
94
RUN mv geckodriver /usr/local/bin/
95
95
RUN wget https://chromedriver.storage.googleapis.com/2.44/chromedriver_linux64.zip
96
96
RUN unzip chromedriver_linux64.zip
97
+ RUN chmod +x chromedriver
97
98
RUN mv chromedriver /usr/local/bin/
98
- RUN chmod +x /usr/bin/chromedriver
99
99
100
100
# ==========================================
101
101
# Create entrypoint and grab example tests
You can’t perform that action at this time.
0 commit comments