From: Sylvain Prat Date: Sat, 10 Dec 2022 00:31:46 +0000 (+0100) Subject: fix: set the STOPSIGNAL to SIGINT for Dockerfile X-Git-Url: https://git.ozva.co.uk/?a=commitdiff_plain;h=f061365587c3141b82338b7f89a2ef29c9923392;p=ozva-cloud fix: set the STOPSIGNAL to SIGINT for Dockerfile --- 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"]