feat: Refactor Dockerfile to use BusyBox for core utilities and update healthcheck commands in Docker Compose and deployment documentation.

This commit is contained in:
CJACK
2026-02-23 04:05:22 +08:00
parent f3bc022a36
commit a086e0cfa1
4 changed files with 20 additions and 13 deletions

View File

@@ -11,7 +11,7 @@ services:
- HOST=0.0.0.0
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:${PORT:-5001}/healthz"]
test: ["CMD", "/usr/local/bin/busybox", "wget", "-qO-", "http://localhost:${PORT:-5001}/healthz"]
interval: 30s
timeout: 10s
retries: 3