Kokoro-FastAPI/Dockerfile

19 lines
383 B
Text
Raw Normal View History

2025-05-25 00:29:49 -03:00
FROM python:3.10-slim
# Instala libs de sistema necessárias para soundfile e pydub
RUN apt-get update && apt-get install -y \
libsndfile1 \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
2025-05-25 00:29:49 -03:00
WORKDIR /app
2025-05-25 15:00:13 -03:00
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
2025-05-25 00:29:49 -03:00
2025-05-25 15:00:13 -03:00
COPY . .
2025-05-25 14:36:48 -03:00
2025-05-25 00:29:49 -03:00
EXPOSE 8000
2025-05-25 00:44:15 -03:00
CMD ["uvicorn", "api.src.main:app", "--host", "0.0.0.0", "--port", "8000"]