From 3017fd4ed4932d3ce3fb35e6bdc407ecafba77c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Va=C5=A1ek=20Chalupn=C3=AD=C4=8Dek?= Date: Tue, 18 Jul 2023 13:08:39 +0200 Subject: [PATCH] Update entrypoint.sh Replace entrypoint.sh process with node process in final command to allow passing signals to the node process (e.g. SIGTERM upon stopping the container) --- docker/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 453122c2..2d88223c 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -8,4 +8,4 @@ then echo "$HOST_IP $HOST_DOMAIN" >> /etc/hosts fi -node bundle.js --listen-api +exec node bundle.js --listen-api