From 3ee0ca3bfe408ad5ab13f42c94de630f457555e5 Mon Sep 17 00:00:00 2001 From: saydamir Date: Tue, 7 Nov 2023 15:22:49 +0300 Subject: [PATCH] Fix: Add handled stopsignal to Dockerfile (#1159) At the moment the application only handles the SIGINT signal. Co-authored-by: Denny Pradipta Co-authored-by: Nico Prananta --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index fc0de2670..881eba7ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,4 +23,5 @@ RUN npm install -g --unsafe-perm ./hyperjumptech-monika-*.tgz WORKDIR / RUN mkdir /config +STOPSIGNAL SIGINT CMD ["monika"] \ No newline at end of file