I need to start two commands on container startup. Following is an extract from my Dockerfile
**FROM node:14.15.5
EXPOSE 3000
CMD [ "/usr/local/bin/node" ,"/usr/src/app/server.js" , ";", "/usr/local/bin/npm" ,"start "]**
It seems that docker starts one of the commands, but npm start doesn't run.
Can anyone help with this?