Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 320 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 320 Bytes

Minimal Image for tini

https://github.com/krallin/tini

Usage

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"]