28 lines
514 B
Docker
28 lines
514 B
Docker
FROM python:3.7
|
|
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install \
|
|
tesseract-ocr \
|
|
tesseract-ocr-jpn \
|
|
&& apt-get clean
|
|
|
|
WORKDIR /install
|
|
|
|
COPY ./bk_api ./bk_api
|
|
|
|
WORKDIR /install/bk_api
|
|
|
|
RUN mv ./ocr_module/tesseract_data/pol.traineddata /usr/share/tesseract-ocr/4.00/tessdata
|
|
|
|
RUN pip3 install pipenv_to_requirements gunicorn && \
|
|
pipenv run pipenv_to_requirements && \
|
|
pip3 install --no-cache -r requirements.txt
|
|
|
|
CMD exec gunicorn bk_api.wsgi:application --bind 0.0.0.0:8000 --workers 3
|
|
|
|
|
|
|
|
|
|
|