Valid 200-901 Dumps shared by ExamDiscuss.com for Helping Passing 200-901 Exam! ExamDiscuss.com now offer the newest 200-901 exam dumps, the ExamDiscuss.com 200-901 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 200-901 dumps with Test Engine here:
A development team needs to containerize an application named 'cust475605674\ A Dockerfile has been created and now the docker build command needs to be run using the current folder to find the Dockerfile. build the image and create a local repository named 'cust321453857-rep' that points to that image. Which command must be used?
Correct Answer: A
To build a Docker image using the current folder and a specified Dockerfile, and then tag the image with a specific name for the local repository, the following command is used: * docker build: This command builds a Docker image from a Dockerfile. * -t cust321453857-rep: The -t option tags the resulting image with the specified name (cust321453857-rep). * -f Dockerfile: The -f option specifies the Dockerfile to use for building the image. Command: docker build -t cust321453857-rep -f Dockerfile . References: * Docker Build Command: Docker Build