From 9b823da608900741bd6c47df07a413fe4215beb0 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Fri, 3 Jan 2020 13:58:44 -0600 Subject: [PATCH] Passing sigterm commands to node --- entrypoint.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 4a7f7b1..a96b054 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -11,9 +11,8 @@ echo "Running build version: $(cat build.info)" case $1 in run) - echo "Baphomet Starting..." - node index.js - echo "...Baphomet Shutdown" + echo "Starting Baphomet..." + exec node index.js ;; *) echo "\"$1\" is an unrecognized command"