Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -8,6 +8,9 @@ RUN apt-get update && \
|
|
8 |
&& rm -rf /var/lib/apt/lists/* \
|
9 |
|| { echo "Package installation failed. Retrying in 3 seconds..."; sleep 3; apt-get update && apt-get install -y poppler-utils; }
|
10 |
|
|
|
|
|
|
|
11 |
COPY . /app
|
12 |
|
13 |
WORKDIR /app
|
|
|
8 |
&& rm -rf /var/lib/apt/lists/* \
|
9 |
|| { echo "Package installation failed. Retrying in 3 seconds..."; sleep 3; apt-get update && apt-get install -y poppler-utils; }
|
10 |
|
11 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
12 |
+
|
13 |
+
|
14 |
COPY . /app
|
15 |
|
16 |
WORKDIR /app
|