Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -7,6 +7,8 @@ WORKDIR /app
|
|
7 |
# Install necessary dependencies with apk
|
8 |
RUN apk update && apk add --no-cache build-base cairo-dev pango-dev ffmpeg texlive
|
9 |
|
|
|
|
|
10 |
COPY ./requirements.txt requirements.txt
|
11 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
12 |
|
|
|
7 |
# Install necessary dependencies with apk
|
8 |
RUN apk update && apk add --no-cache build-base cairo-dev pango-dev ffmpeg texlive
|
9 |
|
10 |
+
RUN apk add --no-cache texlive-standalone
|
11 |
+
|
12 |
COPY ./requirements.txt requirements.txt
|
13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
14 |
|