Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +15 -7
Dockerfile
CHANGED
@@ -11,13 +11,21 @@ COPY . /app
|
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
13 |
# Download and install Chrome WebDriver
|
14 |
-
RUN apt-get
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
RUN playwright install chromium
|
23 |
|
|
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
13 |
# Download and install Chrome WebDriver
|
14 |
+
RUN apt-get install libnss3\
|
15 |
+
libnspr4\
|
16 |
+
libdbus-1-3\
|
17 |
+
libatk1.0-0\
|
18 |
+
libatk-bridge2.0-0\
|
19 |
+
libcups2\
|
20 |
+
libdrm2\
|
21 |
+
libxkbcommon0\
|
22 |
+
libatspi2.0-0\
|
23 |
+
libxcomposite1\
|
24 |
+
libxdamage1\
|
25 |
+
libxfixes3\
|
26 |
+
libxrandr2\
|
27 |
+
libgbm1\
|
28 |
+
libasound2
|
29 |
|
30 |
RUN playwright install chromium
|
31 |
|