正解:
ENTRYPOINT
Explanation:
In a Dockerfile, the ENTRYPOINT instruction is used to specify the command that will be executed when a container starts. Unlike CMD, which can be overridden by arguments provided in docker run, ENTRYPOINT ensures that the specified command is always run.
References:
* Docker Documentation - ENTRYPOINT