# Missing Healthcheck Configuration - ID: docker-missing-healthcheck - Severity: LOW - CWE: Protection Mechanism Failure (CWE-693) - Languages: Dockerfile - Frameworks: docker ## Description Detects Dockerfiles missing HEALTHCHECK instructions for container monitoring. ## Detection Message Dockerfile has no HEALTHCHECK instruction for container health monitoring ## Remediation Add a HEALTHCHECK instruction to monitor container health. ```dockerfile HEALTHCHECK --interval=30s --timeout=10s --retries=3 \ CMD curl -f http://localhost:8080/health || exit 1 ``` Learn more: https://shoulder.dev/learn/docker/cwe-693/missing-healthcheck ## Documentation [object Object] ## Related Rules - **Chi Missing Security Headers** [MEDIUM]: - **Echo Missing Security Headers** [MEDIUM]: - **Fiber Missing Security Headers** [MEDIUM]: - **Gin Missing Security Headers** [MEDIUM]: - **Gorilla Missing Security Headers** [MEDIUM]: