From ac22ff3a129b159500d83507997ef9c48d64320c Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Sun, 31 May 2026 21:56:17 -0700 Subject: [PATCH] Fix Docker build: copy root server.ts into build-env stage The build:server script (esbuild) expects server.ts at the working directory root, but the Dockerfile only copied the server/ directory. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b1870a2..586b8e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,7 @@ COPY server/ /app/server/ COPY database/ /app/database/ COPY public/ /app/public/ COPY instrument.server.mjs ./ +COPY server.ts ./ RUN npm run build FROM node:20-alpine