From 1f4fe21555fede0b5a2b45753d623f8d0f8a9512 Mon Sep 17 00:00:00 2001 From: Denshooter Date: Wed, 12 Feb 2025 18:18:49 +0100 Subject: [PATCH] fix: correct CMD syntax in Dockerfile Remove extraneous character from CMD instruction in Dockerfile to ensure proper execution of the start script. This change fixes the command syntax and improves the reliability of the Docker container startup process. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f25e3a5..18fc455 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,4 +29,4 @@ ENV NODE_ENV=production EXPOSE 3000 # Run the app with the start script -CMD ["npm", "start"]s +CMD ["npm", "start"]