2019-11-25 13:43:17 +01:00
|
|
|
FROM python:3.7
|
|
|
|
|
|
|
|
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get -y install \
|
|
|
|
tesseract-ocr \
|
|
|
|
tesseract-ocr-jpn \
|
|
|
|
&& apt-get clean
|
|
|
|
|
|
|
|
WORKDIR /install
|
|
|
|
|
2019-11-25 14:49:45 +01:00
|
|
|
COPY . .
|
|
|
|
|
|
|
|
WORKDIR /install/api
|
2019-11-25 13:43:17 +01:00
|
|
|
|
|
|
|
# get Polish language train data
|
|
|
|
# RUN wget -P /usr/share/tesseract-ocr/4.00/tessdata/ https://github.com/tesseract-ocr/tessdata/raw/4.00/pol.traineddata
|
|
|
|
|
2019-11-25 15:35:16 +01:00
|
|
|
RUN mv ./tesseract_data/pol.traineddata /usr/share/tesseract-ocr/4.00/tessdata/ && \
|
|
|
|
chmod 777 /usr/share/tesseract-ocr/4.00/tessdata/pol.traineddata
|
2019-11-25 13:43:17 +01:00
|
|
|
|
|
|
|
RUN pip3 install pipenv_to_requirements gunicorn && \
|
|
|
|
pipenv run pipenv_to_requirements && \
|
|
|
|
pip3 install --no-cache -r requirements.txt
|
|
|
|
|
2019-11-25 14:49:45 +01:00
|
|
|
WORKDIR /install
|
2019-11-25 14:16:09 +01:00
|
|
|
|
2019-11-25 14:13:34 +01:00
|
|
|
|
2019-11-25 13:43:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
|