BuyAndKnow/dockerfiles/api.dockerfile
Stanislaw-Golebiewski a84a293a37 webapp setup
2019-12-15 15:03:57 +01:00

28 lines
580 B
Docker

FROM python:3.7
LABEL maintainer="Stanisław Gołębiewski <stagol@st.amu.edu.pl>"
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