Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -1,10 +1,8 @@
|
|
1 |
FROM python:3.10-slim
|
2 |
|
3 |
-
# Install wkhtmltopdf and dependencies
|
4 |
RUN apt-get update && apt-get install -y \
|
5 |
wkhtmltopdf \
|
6 |
-
ca-certificates \
|
7 |
-
fontconfig \
|
8 |
&& rm -rf /var/lib/apt/lists/*
|
9 |
|
10 |
WORKDIR /app
|
|
|
1 |
FROM python:3.10-slim
|
2 |
|
3 |
+
# Install wkhtmltopdf and dependencies
|
4 |
RUN apt-get update && apt-get install -y \
|
5 |
wkhtmltopdf \
|
|
|
|
|
6 |
&& rm -rf /var/lib/apt/lists/*
|
7 |
|
8 |
WORKDIR /app
|