Spaces:
Sleeping
Sleeping
| FROM nvcr.io/nvidia/pytorch:24.07-py3 | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y \ | |
| git \ | |
| libsndfile1 \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN git clone https://github.com/microsoft/VibeVoice.git . | |
| RUN pip install -e . | |
| RUN pip install gradio packaging | |
| COPY app.py . | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] | |