Ocr2 / Dockerfile
DIVY118's picture
Create Dockerfile
52ded87 verified
raw
history blame
No virus
195 Bytes
FROM python:3.12
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install easyocr opencv-python flask
COPY . .
CMD ["flask", "run", "--host", "0.0.0.0", "--port", "7860"]