From eb31179a7df6a5736a073807dd6f9070d307976c Mon Sep 17 00:00:00 2001 From: noah figueras Date: Sun, 17 Sep 2023 11:17:47 -0700 Subject: [PATCH] fix: docker stop does not send SIGTERM to node app --- scripts/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start.sh b/scripts/start.sh index c91978c..7a9a38a 100755 --- a/scripts/start.sh +++ b/scripts/start.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash DIR="$( dirname -- "$( readlink -f -- "$0"; )"; )" -node --experimental-specifier-resolution=node $DIR/../dist/index.js "$@" +exec node --experimental-specifier-resolution=node $DIR/../dist/index.js "$@"