VibeVoice-Realtime / Dockerfile
TGPro1's picture
Create Dockerfile
a3d8979 verified
raw
history blame contribute delete
460 Bytes
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"]