Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 431 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 431 Bytes

Distroless Helper

Copy binary and libraries to the target folder.

Example usage

FROM debian as base
COPY --from=ghcr.io/ahmetozer/distroless-helper /bin/distroless-helper /bin/distroless-helper
RUN /bin/distroless-helper /bin/bash /opt

FROM scratch
COPY --from=base /opt/ /
USER 65534
ENTRYPOINT ["/bin/bash"]

For more example, you can visit ahmetozer/containers