FROM python RUN apt-get update && \ apt-get install -y \ ffmpeg \ tesseract-ocr \ imagemagick \ webp && \ apt-get upgrade -y && \ rm -rf /var/lib/apt/lists/* WORKDIR /app COPY requirements.txt . RUN pip install -r requirements.txt COPY . . EXPOSE 7860 RUN chmod -R 777 /app CMD ["python3", "app.py"]