How to chain commands for docker deploys?

I’m trying to start my docker container on render with something like
flask db migrate && gunicorn app:app, but I keep getting errors saying that && is not a valid option for migrate.

I’ve tried creating a shell script and having it run that, but same issue.

Hi @peturl,

I see that your most recent deploys were successful - were you able to get this working?

Yes actually! Turns out I needed to add sh -c before the command chaining.