Multiple commands on docker ENTRYPOINT
You can use something like this:
ENTRYPOINT ["/bin/sh", "-c" , "<command A> && <command B> && <command C>"]
In case you want to run many commands at entrypoint, the best idea is to create a bash file. For example commands.sh
like this
#!/bin/bash
mkdir /root/.ssh
echo "Something"
cd tmp
ls
...
And then, in your DockerFile, set entrypoint to commands.sh
file (that execute and run all your commands inside)
COPY commands.sh /scripts/commands.sh
RUN ["chmod", "+x", "/scripts/commands.sh"]
ENTRYPOINT ["/scripts/commands.sh"]
After that, each time you start your container, commands.sh
will be execute and run all commands that you need. You can take a look here https://github.com/dangminhtruong/drone-chatwork