Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
FROM
|
2 |
|
3 |
USER root
|
4 |
|
5 |
WORKDIR /code
|
6 |
|
7 |
-
RUN apt update && apt install -y fuse libfuse2 fonts-dejavu python3-pip
|
8 |
|
9 |
COPY . .
|
10 |
RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
|
|
|
1 |
+
FROM python:3.9
|
2 |
|
3 |
USER root
|
4 |
|
5 |
WORKDIR /code
|
6 |
|
7 |
+
RUN apt update && apt install --quiet -y fuse libfuse2 fonts-dejavu python3-pip inkscape
|
8 |
|
9 |
COPY . .
|
10 |
RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
|