Spaces:
Running
on
Zero
Running
on
Zero
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"] | |