Question 194 of 296 from exam AZ-400: Designing and Implementing Microsoft DevOps Solutions

Question 194 of 296 from exam AZ-400: Designing and Implementing Microsoft DevOps Solutions

Question

You plan to create an image that will contain a .NET Core application.

You have a Dockerfile file that contains the following code. (Line numbers are included for reference only.)

You need to ensure that the image is as small as possible when the image is built.

Which line should you modify in the file?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

A

Multi-stage builds (in Docker 17.05 or higher) allow you to drastically reduce the size of your final image, without struggling to reduce the number of intermediate layers and files.

With multi-stage builds, you use multiple FROM statements in your Dockerfile. Each FROM instruction can use a different base, and each of them begins a new stage of the build. You can selectively copy artifacts from one stage to another, leaving behind everything you don't want in the final image.

https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds