A parks department needs a slim image for a Python tool that calls the Webex API. The Dockerfile already has a base image and a COPY of the app. Which single instruction best completes the default startup without authoring an entire recipe from scratch?
Select an answer to reveal the explanation.
Short Explanation
You do not rewrite the whole cookbook for one missing step—you add the instruction that starts dinner. CMD or ENTRYPOINT tells the container what process to run when nothing else is specified.
Full Explanation
DEVCOR-style Dockerfile items judge which layer solves a stated need: base image, copy, or default command. Completing startup with CMD or ENTRYPOINT is the targeted fix. Requiring a full wall-of-Dockerfile from scratch exceeds the bank’s snippet-level rule, and unrelated tricks like mounting the Docker socket are out of scope for a simple Webex helper image.