Fix XTTS loader compatibility and add default voice

This commit is contained in:
2025-12-09 11:37:55 +01:00
parent 8cd91b6f22
commit ca3e66f17a
14 changed files with 483 additions and 128 deletions

View File

@ -1,7 +1,8 @@
FROM nvidia/cuda:12.1.0-runtime-ubuntu22.04 AS base
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.worker.txt .
RUN apt-get update && apt-get install -y python3-pip ffmpeg
RUN apt-get update && apt-get install -y python3-pip ffmpeg espeak-ng
RUN pip3 install -r requirements.worker.txt
COPY . .
CMD ["python3","main.py"]