What is the standard pattern for exiting an alpine docker image that runs a test suite?
I want to create a base docker image for runnning a test suite. After the commands run, what can the entrypoint script do to shut down the docker image? Do people use a standard halt
or poweroff
command or something OR is there a more graceful/intuitive way to do it?
Maybe it is just exit
from the shell? I’ll try that, but hoping for a more exact answer here.