Which four commands should you use to develop the solution?

DRAG DROP
You plan to create a Docker image that runs as ASP.NET Core application named ContosoApp. You have a setup script named setupScript.ps1 and a series of application files including ContosoApp.dll.
You need to create a Dockerfile document that meets the following requirements:
Call setupScript.ps1 when the container is built.
Run ContosoApp.dll when the container starts.
The Docker document must be created in the same folder where ContosoApp.dll and setupScript.ps1 are stored.
Which four commands should you use to develop the solution? To answer, move the appropriate commands from the list of commands to the answer area and arrange them in the correct order.
Select and Place:

Microsoft AZ-204: Developing Solutions for Microsoft Azure

Free dumps for AZ-204 in PDF format also you can read online.

High quality AZ-204 PDF and software. VALID exam to help you pass.

microsoft-exams

3 thoughts on “Which four commands should you use to develop the solution?

  1. Why would it not be
    FROM #base image
    Workdir
    COPY #copy local files to container
    ENTRYPOINT #default command to run in container

    1
    1
  2. that answer is pure trash.
    expose is for port documenting WTF
    CMD + ENTRYPOINT mess all up, unless you use it as params

    I’ll go with:
    FROM #base image
    COPY #copy local files to container
    RUN #execute instructions in buildtime
    ENTRYPOINT #default command to run in container

    3
    2

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.