MegaTTS3 / Dockerfile
ZiyueJiang's picture
first commit for huggingface space
593f3bc
raw
history blame
321 Bytes
FROM pytorch/pytorch:2.3.0-cuda12.1-cudnn8-runtime
WORKDIR /app
RUN apt-get update && apt-get install -y \
curl \
python3 \
python3-pip \
ffmpeg \
&& apt-get clean
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app/
CMD ["python", "-m", "tts.gradio_api"]