Note: This question is part of series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have a server named Server1 that runs Windows Server 2019. Server1 is a container host.
You are creating a Dockerfile to build a container image.
You need to add a file named File1.txt from Server1 to a folder named C:\Folder1 in the container image.
Solution: You add the following line to the Dockerfile.
XCOPY File1.txt C:\Folder1\
You then build the container image.
Does this meet the goal?
Click on the arrows to vote for the correct answer
A. B.B
Copy is the correct command to copy a file to the container image. Furthermore, the root directory is specified as '/' and not as 'C:/'.
https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#add-or-copy https://docs.docker.com/engine/reference/builder/Create and Deploy Apps
The provided solution is correct, and it will meet the stated goal of adding a file named File1.txt from Server1 to a folder named C:\Folder1 in the container image.
The Dockerfile is a text file that contains a set of instructions used to build a Docker image. The Dockerfile contains a series of commands, such as COPY or ADD, which are used to copy files or directories into the container image.
In the given scenario, the solution uses the XCOPY command, which is a command-line utility that is used to copy files and directories. The XCOPY command is executed inside the container image, and it copies the File1.txt file from the host server, Server1, to the C:\Folder1 directory in the container image.
Therefore, the provided solution is correct and will meet the stated goal of adding a file named File1.txt from Server1 to a folder named C:\Folder1 in the container image. Hence, the answer is A. Yes.