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"]