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