Which Dockerfile instructions select a parent image and define the command run when a container starts?
WORKDIR selects the parent image, and ADD defines the startup command.
WORKDIR
ADD
VOLUME selects the parent image, and FROM defines the startup command.
VOLUME
FROM
FROM selects the parent image, and CMD defines the default startup command.
CMD
CMD selects the parent image, and WORKDIR defines the startup command.