Ocr2 / Dockerfile
DIVY118's picture
Update Dockerfile
30ce653 verified
raw
history blame
No virus
212 Bytes
FROM python:3.12
WORKDIR /code
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
RUN pip install easyocr opencv-python flask
COPY . .
CMD ["flask", "run", "--host", "0.0.0.0", "--port", "7860"]