Update Dockerfile

This commit is contained in:
Patrick Jentsch 2019-05-27 11:47:38 +02:00
parent f73a191314
commit f731634ba1

View File

@ -26,7 +26,7 @@ RUN wget -nv https://github.com/tmbdev/ocropy/archive/v"$OCROPY_VERSION".tar.gz
wget -nv http://www.tmbdev.net/en-default.pyrnn.gz -P models/ && \
python2.7 setup.py install && \
cd .. && \
rm -r v"$OCROPY_VERSION".tar.gz ocropy-"$OCROPY_VERSION"
rm -r ocropy-"$OCROPY_VERSION" v"$OCROPY_VERSION".tar.gz
# Install pyFlow
ENV PYFLOW_VERSION 1.1.20
@ -35,7 +35,7 @@ RUN wget -nv https://github.com/Illumina/pyflow/releases/download/v"$PYFLOW_VERS
cd pyflow-"$PYFLOW_VERSION" && \
python2.7 setup.py build install && \
cd .. && \
rm -r pyflow-"$PYFLOW_VERSION".tar.gz pyflow-"$PYFLOW_VERSION"
rm -r pyflow-"$PYFLOW_VERSION" pyflow-"$PYFLOW_VERSION".tar.gz
# Install Tesseract OCR and Data Files
RUN echo "deb https://notesalexp.org/tesseract-ocr/stretch/ stretch main" >> /etc/apt/sources.list && \