I have a Dockerfile and it ends with CMD command like below;
CMD ["npm", "start"]
So I want to add another command like below;
CMD java -javaagent:/work/dd-java-agent.jar
2 CMD entry not allowed for Dockerfile, how can I re-organize these commands in a single line?
Thanks!