From ad323ec8ef7e2ae82d360faf14bcc70f093a2c03 Mon Sep 17 00:00:00 2001 From: Daniel Chesterton Date: Thu, 30 Dec 2021 23:05:09 +0000 Subject: [PATCH] Fix Dockerfile to send correct STOPSIGNAL --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 2ff3e33..bebaff0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ COPY requirements.txt / RUN pip install --no-warn-script-location --prefix=/install -r /requirements.txt FROM base +STOPSIGNAL SIGINT COPY --from=builder /install /usr/local COPY src /app COPY VERSION /app