Spaces:
Sleeping
Sleeping
Istvan-Adem
commited on
Commit
·
de5b934
1
Parent(s):
61d6d0e
add pytesseract
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
|
@@ -10,7 +10,10 @@ COPY --chown=user ./requirements.txt requirements.txt
|
|
| 10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 11 |
|
| 12 |
USER root
|
| 13 |
-
RUN apt-get update && apt-get install -y
|
|
|
|
|
|
|
|
|
|
| 14 |
USER user
|
| 15 |
|
| 16 |
COPY --chown=user . /app
|
|
|
|
| 10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 11 |
|
| 12 |
USER root
|
| 13 |
+
RUN apt-get update && apt-get install -y \
|
| 14 |
+
poppler-utils \
|
| 15 |
+
tesseract-ocr \
|
| 16 |
+
libtesseract-dev
|
| 17 |
USER user
|
| 18 |
|
| 19 |
COPY --chown=user . /app
|