A Linux administrator wants to create a Docker image from a Dockerfile. Which TWO of the following commands are needed? (Select TWO).
Builds the image from the Dockerfile.
Why this answer
docker build builds the image; docker tag optionally tags it; docker push uploads to registry; docker run runs a container; docker commit creates image from container.