ENTRYPOINT configures a container that will be run as an executable.


There are two ways to specify an ENTRYPOINT: the (preferred) exec form

ENTRYPOINT ["executable", "param1", "param2"]

and the shell form:
ENTRYPOINT command param1 param2