From 48b47e9bdb0da44746282cd7cf7599a69bf5130d Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Thu, 9 Oct 2025 18:43:06 -0500 Subject: [PATCH] fix: correct Docker CMD to use root-level server.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Next.js standalone build outputs server.js to /app/server.js, not /app/apps/web/server.js. This was causing the container to crash on startup with MODULE_NOT_FOUND errors, resulting in 404s for abaci.one. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0f30b744..e99226a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,4 +50,4 @@ ENV PORT 3000 ENV HOSTNAME "0.0.0.0" # Start the application -CMD ["node", "apps/web/server.js"] \ No newline at end of file +CMD ["node", "server.js"] \ No newline at end of file