PresentAgent / MegaTTS3 /Dockerfile
sjw712's picture
Upload 208 files
d961e88 verified
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"]