Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert non-distributable install to ONBUILD
This way downstream consumers do not need to fork or otherwise build the ironlib image to add the non-distributable binaries. Take vogelkop as an example, OSS Dockerfile can depend on this image just fine. Downstream users can then do something like: ```Dockerfile FROM $vogelkopimage AS vogelkop FROM $ironlibimage COPY --from=vogelkop /usr/bin/vogelkop /usr/bin ``` And then provide the values for ONBUILD on the docker command line to fetch the non-distributable files. No need to fork ironlib nor vogelkop's Dockerfiles!
- Loading branch information