Spaces:
Sleeping
Sleeping
File size: 308 Bytes
240e0c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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"]
|