f5tts / Dockerfile
sidmazak's picture
Update Dockerfile
692b5d5 verified
Raw
History Blame Contribute Delete
279 Bytes
FROM ghcr.io/remsky/kokoro-fastapi-cpu:latest
# Hugging Face Spaces requires port 7860
ENV PORT=7860
ENV API_PORT=7860
ENV API_HOST=0.0.0.0
EXPOSE 7860
# Override the default command to force port 7860
CMD ["uvicorn", "api.src.main:app", "--host", "0.0.0.0", "--port", "7860"]