Run multiple command in docker

To run multiple commands in docker, use /bin/bash -c and semicolon ; to separate the commands. For example: change directory and run a python script:
docker run image /bin/bash -c “cd /path/to/somewhere; python a.py”
Run multiple command in docker