somratpro Claude Sonnet 4.6 commited on
Commit
909b900
·
1 Parent(s): 79d2b7b

test: disable HEALTHCHECK to diagnose RUNNING_APP_STARTING

Browse files

HF Space stuck in RUNNING_APP_STARTING despite /health returning 200.
Testing if Docker HEALTHCHECK is causing HF to never flip to RUNNING.
HEALTHCHECK NONE lets HF use its own probe (app_port connectivity).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -97,7 +97,6 @@ ENV HERMES_HOME=/opt/data \
97
 
98
  EXPOSE 7861
99
 
100
- HEALTHCHECK --interval=30s --timeout=5s --start-period=30s \
101
- CMD curl -fsS http://localhost:7861/health || exit 1
102
 
103
  CMD ["/opt/huggingmes/start.sh"]
 
97
 
98
  EXPOSE 7861
99
 
100
+ HEALTHCHECK NONE
 
101
 
102
  CMD ["/opt/huggingmes/start.sh"]