I have a bunch of script inside my docker image
script01.sh
script02.sh
script03.sh
...
I would like to run them (in a particular order) in the ENTRYPOINT statemant:
ENTRYPOINT ["script01.sh", "script02.sh", "script03.sh", ...]
I've tryed different formulations (adding "bash", "." in the entrypoint commands), but nothing seems to work.
Any suggestion?
This : Multiple commands on docker ENTRYPOINT did not work in my case so I wrote a new question as the site suggestet me.