Ocr2 / Dockerfile
DIVY118's picture
Update Dockerfile
1a1a0aa verified
raw
history blame contribute delete
No virus
342 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
# Create the directory if it doesn't exist
RUN mkdir -p /.EasyOCR
# Grant permissions to the directory
RUN chmod -R 777 /.EasyOCR
COPY . .
CMD ["flask", "run", "--host", "0.0.0.0", "--port", "7860"]