Spaces:
Sleeping
Sleeping
File size: 270 Bytes
5b4af9c | 1 2 3 4 5 6 7 8 | 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"]
|