FROM python:3.10 WORKDIR /app RUN apt-get update && apt-get install -y \ ffmpeg git git-lfs cmake rsync libgl1 libsm6 libxext6 \ && rm -rf /var/lib/apt/lists/* \ && git lfs install COPY . . RUN pip install pip==23.3.1 \ && pip install --no-cache-dir -r requirements.txt CMD ["python", "app.py"]