seed repo scaffold

This commit is contained in:
timmy 2026-07-08 19:27:10 +00:00
parent 0f3e5fa22d
commit ff97b516f8

10
services/tts/Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM python:3.11-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg git libsndfile1 && rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Use Coqui OSS fork for local voice cloning
RUN pip install --no-cache-dir TTS==0.22.0
COPY services/tts/server.py /app/server.py
VOLUME ["/app/reference"]
EXPOSE 5002
CMD ["python", "server.py"]