Valid 701-100 Dumps shared by ExamDiscuss.com for Helping Passing 701-100 Exam! ExamDiscuss.com now offer the newest 701-100 exam dumps, the ExamDiscuss.com 701-100 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 701-100 dumps with Test Engine here:
Which statement in a Dockerfile defines which command should be started in the container by default when it is started? (Specify ONLY the statement's name without any values or parameters.)
Correct Answer:
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