fix: set the STOPSIGNAL to SIGINT for Dockerfile

This commit is contained in:
Sylvain Prat 2022-12-10 01:31:46 +01:00 committed by GitHub
parent d35cea4c36
commit f061365587
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,4 +15,5 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
FROM scratch
COPY --from=builder /bin/dufs /bin/dufs
STOPSIGNAL SIGINT
ENTRYPOINT ["/bin/dufs"]