Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -15,9 +15,6 @@ COPY requirements.txt .
|
|
15 |
# Install Python dependencies
|
16 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
17 |
|
18 |
-
# Install Playwright and its dependencies
|
19 |
-
RUN playwright install --with-deps chromium
|
20 |
-
|
21 |
# Install additional system dependencies if needed
|
22 |
RUN apt-get update && apt-get install -y \
|
23 |
gconf-service \
|
@@ -39,6 +36,9 @@ RUN apt-get update && apt-get install -y \
|
|
39 |
&& apt-get clean \
|
40 |
&& rm -rf /var/lib/apt/lists/*
|
41 |
|
|
|
|
|
|
|
42 |
# Copy the current directory contents into the container
|
43 |
COPY . .
|
44 |
|
|
|
15 |
# Install Python dependencies
|
16 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
17 |
|
|
|
|
|
|
|
18 |
# Install additional system dependencies if needed
|
19 |
RUN apt-get update && apt-get install -y \
|
20 |
gconf-service \
|
|
|
36 |
&& apt-get clean \
|
37 |
&& rm -rf /var/lib/apt/lists/*
|
38 |
|
39 |
+
# Install Playwright and its dependencies
|
40 |
+
RUN playwright install --with-deps chromium
|
41 |
+
|
42 |
# Copy the current directory contents into the container
|
43 |
COPY . .
|
44 |
|