File size: 279 Bytes
36077ac ab3f41a 37085aa |
1 2 3 4 5 6 7 8 9 10 |
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"]
|