Docker file for tesseract 4.0 Docker file for tesseract 4.0 docker docker

Docker file for tesseract 4.0


FROM ubuntu:18.04RUN apt-get update \    && apt-get install tesseract-ocr -y \    python3 \    #python-setuptools \    python3-pip \    && apt-get clean \    && apt-get autoremoveADD . /home/AppWORKDIR /home/AppCOPY requirements.txt ./COPY . .RUN pip3 install -r requirements.txtVOLUME ["/data"]EXPOSE 5000 5000CMD ["python3","OCRRun.py"]