I\'m trying to build a custom tcserver docker image. But I\'m having some problems starting the webserver and the tomcat. As far as I understand I should use ENTRYPOINT
You can use npm concurrently package.
concurrently
For e.g.
ENTRYPOINT ["npx","concurrently","command1","command2"]
It will run them in parallel.