ttsapi / Dockerfile
shahid202's picture
Update Dockerfile
5b4af9c verified
raw
history blame contribute delete
270 Bytes
FROM python:3.10-slim
RUN apt-get update && apt-get install -y espeak-ng libsndfile1 ffmpeg
WORKDIR /app
RUN pip install --no-cache-dir kokoro>=0.9.2 soundfile fastapi uvicorn numpy
COPY . .
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]