Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -24,6 +24,9 @@ RUN apt-get update && apt-get install -y \
|
|
24 |
file \
|
25 |
&& rm -rf /var/lib/apt/lists/*
|
26 |
|
|
|
|
|
|
|
27 |
# Copy the requirements file into the container at /app
|
28 |
COPY requirements.txt /app/
|
29 |
|
|
|
24 |
file \
|
25 |
&& rm -rf /var/lib/apt/lists/*
|
26 |
|
27 |
+
#adding the poppler
|
28 |
+
RUN apt-get update && apt-get install -y poppler-utils
|
29 |
+
|
30 |
# Copy the requirements file into the container at /app
|
31 |
COPY requirements.txt /app/
|
32 |
|