Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -35,8 +35,8 @@ COPY requirements.txt .
|
|
35 |
RUN pip install --upgrade pip && pip install -r requirements.txt
|
36 |
|
37 |
# Install Playwright browsers
|
38 |
-
RUN
|
39 |
-
|
40 |
|
41 |
# Copy application files
|
42 |
COPY . .
|
|
|
35 |
RUN pip install --upgrade pip && pip install -r requirements.txt
|
36 |
|
37 |
# Install Playwright browsers
|
38 |
+
RUN pip install --no-cache-dir playwright && \
|
39 |
+
playwright install chromium
|
40 |
|
41 |
# Copy application files
|
42 |
COPY . .
|