From 33f413d35fe089a7926c13cd59ebe0eb03e91827 Mon Sep 17 00:00:00 2001 From: Niels V Date: Thu, 20 Feb 2025 16:13:37 +0100 Subject: [PATCH] make run-production the main process. --- boot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.sh b/boot.sh index f1d81b0..510bd6a 100755 --- a/boot.sh +++ b/boot.sh @@ -9,5 +9,5 @@ then --exec /usr/src/app/run-development.sh elif [ "$NODE_ENV" == "production" ] then - /usr/src/app/run-production.sh + exec /usr/src/app/run-production.sh fi