From f061365587c3141b82338b7f89a2ef29c9923392 Mon Sep 17 00:00:00 2001 From: Sylvain Prat Date: Sat, 10 Dec 2022 01:31:46 +0100 Subject: [PATCH] fix: set the STOPSIGNAL to SIGINT for Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 026e2e0..94219fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,4 +15,5 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ FROM scratch COPY --from=builder /bin/dufs /bin/dufs +STOPSIGNAL SIGINT ENTRYPOINT ["/bin/dufs"]