Spaces:
Sleeping
Sleeping
Initial Commit 5.1.0
Browse files- Dockerfile +2 -1
- apt.txt +1 -2
Dockerfile
CHANGED
|
@@ -9,9 +9,10 @@ RUN apt-get update && apt-get install -y \
|
|
| 9 |
poppler-utils \
|
| 10 |
libgl1 \
|
| 11 |
texlive \
|
| 12 |
-
python-multipart \
|
| 13 |
&& rm -rf /var/lib/apt/lists/*
|
| 14 |
|
|
|
|
|
|
|
| 15 |
# Install LaTeX-OCR manually
|
| 16 |
RUN git clone https://github.com/lukas-blecher/LaTeX-OCR.git /opt/latexocr && \
|
| 17 |
pip install /opt/latexocr
|
|
|
|
| 9 |
poppler-utils \
|
| 10 |
libgl1 \
|
| 11 |
texlive \
|
|
|
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
|
| 14 |
+
RUN pip install python-multipart
|
| 15 |
+
|
| 16 |
# Install LaTeX-OCR manually
|
| 17 |
RUN git clone https://github.com/lukas-blecher/LaTeX-OCR.git /opt/latexocr && \
|
| 18 |
pip install /opt/latexocr
|
apt.txt
CHANGED
|
@@ -1,4 +1,3 @@
|
|
| 1 |
poppler-utils
|
| 2 |
tesseract-ocr
|
| 3 |
-
texlive
|
| 4 |
-
python-multipart
|
|
|
|
| 1 |
poppler-utils
|
| 2 |
tesseract-ocr
|
| 3 |
+
texlive
|
|
|