From 61408d63622d9f51e2ea0af79ce665f569c98d10 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Sun, 18 Jan 2026 16:13:00 +0100 Subject: [PATCH] Fix serve command options in Dockerfile - Remove unsupported --host flag from serve command - The serve package with -l option binds to 0.0.0.0 by default in containers - Container will now start properly without ArgError --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6bebe8e..ece0213 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,4 +23,4 @@ RUN npm install -g serve EXPOSE 3000 # Start the application using serve directly -CMD ["serve", "-s", "build", "-l", "3000", "--host", "0.0.0.0"] \ No newline at end of file +CMD ["serve", "-s", "build", "-l", "3000"] \ No newline at end of file