Testing with ChromeDriver
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -61,8 +61,8 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 61 |
# && chmod +x /usr/local/bin/chromedriver
|
| 62 |
# Hardcoded ChromeDriver version (replace with the version you need)
|
| 63 |
RUN wget -q https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.66/linux64/chromedriver-linux64.zip \
|
| 64 |
-
&& unzip
|
| 65 |
-
&& rm
|
| 66 |
&& mv chromedriver /usr/local/bin/ \
|
| 67 |
&& chmod +x /usr/local/bin/chromedriver
|
| 68 |
|
|
|
|
| 61 |
# && chmod +x /usr/local/bin/chromedriver
|
| 62 |
# Hardcoded ChromeDriver version (replace with the version you need)
|
| 63 |
RUN wget -q https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.66/linux64/chromedriver-linux64.zip \
|
| 64 |
+
&& unzip chromedriver-linux64.zip \
|
| 65 |
+
&& rm chromedriver-linux64.zip \
|
| 66 |
&& mv chromedriver /usr/local/bin/ \
|
| 67 |
&& chmod +x /usr/local/bin/chromedriver
|
| 68 |
|