From 7233ab3f328cf53f277e64f7b9baa53ea1abcb95 Mon Sep 17 00:00:00 2001 From: Daan Schouteden Date: Tue, 2 Jun 2026 13:08:07 +0200 Subject: [PATCH] Update Dockerfile to point CMD to the correct server file location --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3ed4786..ae5b484 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ COPY --from=deps /app/node_modules ./node_modules COPY --from=build /app/dist ./dist COPY package.json ./ EXPOSE 8787 -CMD ["node", "dist/server.js"] +CMD ["node", "dist/src/server.js"]