I'm using in docker-compose entrypoint two commands:
entrypoint: ["curl", "-X", "working command","&&","npm", "working command"]
When I'm using them separately they are working, but when I used provided solution it looks curl catch npm command and it can't be executed in a proper way. So how to split them? Is there any solution without using bash script, like
entrypoint: ["./script.sh","&&","npm", "working command"]