From 3535e059fe0125a69612a1f8c3cfe709b6aacb47 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Mon, 11 May 2026 21:44:31 +0200 Subject: [PATCH] Simplify Docker CMD by removing `tsconfig-paths/register` usage --- backend/api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/api/Dockerfile b/backend/api/Dockerfile index 36705e8f..f4e95838 100644 --- a/backend/api/Dockerfile +++ b/backend/api/Dockerfile @@ -32,4 +32,4 @@ COPY dist ./ # Use PM2 to run the application with the ecosystem config (was only for VM, not cloud run) #CMD ["pm2-runtime", "ecosystem.config.js"] -CMD ["node", "-r", "tsconfig-paths/register", "backend/api/lib/serve.js"] \ No newline at end of file +CMD ["node", "backend/api/lib/serve.js"] \ No newline at end of file