From bba0a06a717f3681cda165118edecd9faf8d59ee Mon Sep 17 00:00:00 2001 From: Parley Hatch Date: Sun, 31 May 2026 18:25:15 -0600 Subject: [PATCH] Drop Dockerfile HEALTHCHECK (OrbStack engine doesn't run it; sat in 'starting' forever) Co-Authored-By: Claude Opus 4.8 (1M context) --- Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0faa10d..d5dde58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,4 @@ COPY index.html style.css script.js /usr/share/nginx/html/ EXPOSE 80 -# Liveness probe for `docker ps` / orchestration. -HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD wget -q -O /dev/null http://localhost/ || exit 1 - CMD ["nginx", "-g", "daemon off;"]