From 4714cc7892ae550b329df7ed574e804756a08311 Mon Sep 17 00:00:00 2001 From: br0kenpixel <23280129+br0kenpixel@users.noreply.github.com> Date: Fri, 31 Oct 2025 17:45:47 +0100 Subject: [PATCH] fix: correct CMD syntax in Dockerfile for frontend server --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 5110e69..a215f25 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -17,4 +17,4 @@ RUN npm run build STOPSIGNAL SIGTERM # Run frontend web server -CMD ["node .output/server/index.mjs"] \ No newline at end of file +CMD ["node", ".output/server/index.mjs"] \ No newline at end of file