Spaces:
Sleeping
Sleeping
File size: 460 Bytes
a3d8979 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 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"]
|