From a40c35cc0b1d82347ab04960a01f22281c6835db Mon Sep 17 00:00:00 2001 From: user Date: Sun, 15 Feb 2026 03:46:51 +0100 Subject: [PATCH] fix: add STOPSIGNAL SIGTERM to Containerfile --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index ab9c638..6848329 100644 --- a/Containerfile +++ b/Containerfile @@ -9,6 +9,7 @@ ENV PYTHONUNBUFFERED=1 \ PYTHONPATH=/app/src EXPOSE 1080 +STOPSIGNAL SIGTERM ENTRYPOINT ["python", "-m", "s5p"] CMD ["-c", "/app/config/s5p.yaml"]