From 11ab0f871cfd501b339b66dfc37dc31068cfdf69 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Jun 2026 11:23:05 +0000 Subject: [PATCH 1/2] Initial plan From faef558e2bb48819c97aa8bbec8410e4bad3686d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Jun 2026 11:24:01 +0000 Subject: [PATCH 2/2] Fix Dockerfile CMD to use dist/src/server.js --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cf4bcac..ea9df3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,4 +39,4 @@ EXPOSE 3000 HEALTHCHECK --interval=15s --timeout=5s --start-period=10s --retries=3 \ CMD wget -qO- http://localhost:3000/health || exit 1 -CMD ["node", "dist/server.js"] +CMD ["node", "dist/src/server.js"]