From c779906d5cdf85ad126b29066bc70981ff07002b Mon Sep 17 00:00:00 2001 From: Ozeliurs Date: Tue, 8 Oct 2024 16:44:05 +0200 Subject: [PATCH] fix(docker-entrypoint.sh): properly quote "daemon off" argument in nginx command --- react-frontend/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-frontend/docker-entrypoint.sh b/react-frontend/docker-entrypoint.sh index e844a3e..b828710 100644 --- a/react-frontend/docker-entrypoint.sh +++ b/react-frontend/docker-entrypoint.sh @@ -6,4 +6,4 @@ for file in /usr/share/nginx/html/*; do fi done -nginx -g daemon off; +nginx -g "daemon off;"