Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -10,7 +10,9 @@ ENV PYTHONUNBUFFERED=1
|
|
10 |
ENV PLAYWRIGHT_BROWSERS_PATH=/app/ms-playwright
|
11 |
|
12 |
# Install system dependencies
|
13 |
-
RUN apt-get update && apt-get install -y
|
|
|
|
|
14 |
|
15 |
# Copy the requirements file into the container
|
16 |
COPY requirements.txt .
|
|
|
10 |
ENV PLAYWRIGHT_BROWSERS_PATH=/app/ms-playwright
|
11 |
|
12 |
# Install system dependencies
|
13 |
+
RUN apt-get update && apt-get install -y \
|
14 |
+
wkhtmltopdf \
|
15 |
+
&& rm -rf /var/lib/apt/lists/*
|
16 |
|
17 |
# Copy the requirements file into the container
|
18 |
COPY requirements.txt .
|