What is Docker Entrypoint?

We use Docker Entrypoint to set the starting point for a command in a Docker Image.
We can use the entry point as a command for running an image in the container.
E.g. We can define the following entry point in the docker file and run it as the following command:
ENTRYPOINT [“mycmd”]
%docker run mycmd