https://github.com/krallin/tini
Or in a docker image (multistage build)
# ... other build steps
FROM volf52/tini:1.1 as tini-src
# Use the binary in other stages
FROM base as prod
COPY --from=tini-src /bin/tini /bin/tini
ENTRYPOINT ["/bin/tini", "--", "/app"]