Spaces:
Sleeping
Sleeping
File size: 489 Bytes
a6547c3 a53a767 a6547c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y wget && apt-get clean
RUN wget -O kokoro-v1.0.onnx https://github.com/thewh1teagle/kokoro-onnx/releases/download/model-files-v1.0/kokoro-v1.0.onnx
RUN wget -O voices-v1.0.bin https://github.com/thewh1teagle/kokoro-onnx/releases/download/model-files-v1.0/voices-v1.0.bin
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "main:app"] |