Spaces:
Sleeping
Sleeping
Commit
·
0c26bda
1
Parent(s):
939dd28
Auto-commit: Dockerfile updated
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -47,6 +47,9 @@ COPY requirements.txt .
|
|
| 47 |
# Install Python dependencies
|
| 48 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 49 |
|
|
|
|
|
|
|
|
|
|
| 50 |
# Copy application code
|
| 51 |
COPY app.py .
|
| 52 |
|
|
|
|
| 47 |
# Install Python dependencies
|
| 48 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 49 |
|
| 50 |
+
# Install Playwright and Chromium browser
|
| 51 |
+
RUN playwright install chromium --with-deps
|
| 52 |
+
|
| 53 |
# Copy application code
|
| 54 |
COPY app.py .
|
| 55 |
|