Spaces:
Running
Running
test: disable HEALTHCHECK to diagnose RUNNING_APP_STARTING
Browse filesHF 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>
- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -97,7 +97,6 @@ ENV HERMES_HOME=/opt/data \
|
|
| 97 |
|
| 98 |
EXPOSE 7861
|
| 99 |
|
| 100 |
-
HEALTHCHECK
|
| 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"]
|