I have a base Docker image, Base, that contains a supporting service 'helper' I want to run. This base is not intended for direct use.
If I build another image from Base, is there a way 'helper' can be set to auto-run on start without the author of this new image being aware of having to start it.
For example I know I can doctor the CMD to start 'helper' && then do whatever the author wants. I'm looking for a way to encapsulate starting 'helper' so the image author building on top of Base doesn't have to be aware or do anything.
Possible?