TTSFM / Dockerfile
wwforonce's picture
fix Dockerfile
37085aa
FROM ghcr.io/dbccccccc/ttsfm:latest
WORKDIR /app/ttsfm-web
# Add health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
CMD curl -f http://localhost:7860/ || exit 1
CMD ["python", "-m", "waitress", "--host=0.0.0.0", "--port=7860", "app:app"]