MagpieTTS_Internal_Demo / docker /Dockerfile.gradio
subhankarg's picture
Upload folder using huggingface_hub
0558aa4 verified
raw
history blame
485 Bytes
ARG BASE_IMAGE=nvcr.io/nvidia/nemo:25.09
WORKDIR /workspace/
RUN pip install --no-cache-dir gradio
RUN git clone https://github.com/NVIDIA/NeMo.git@magpietts_opensource_longform
ENV PYTHONPATH="/workspace/NeMo:${PYTHONPATH}"
RUN pip install kaldialign
RUN pip install nemo_toolkit[tts]@git+https://github.com/NVIDIA/NeMo.git@magpietts_opensource_longform
RUN pip install git+https://github.com/sarulab-speech/UTMOSv2.git@v1.2.1
WORKDIR /workspace/NeMo
CMD ["python", "app.py"]