az-204-developer-associate video for you plan to create a Docker image that runs an ASP.NET Core application named ContosoApp. You have a setup script named
You plan to create a Docker image that runs an 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 Dockerfile document must be created in the same folder where ContosoApp.dll and setupScript.ps1 are stored. Which five commands in order should you use to develop the solution? COMMANDS RUN powershell ./setupScript.ps1 FROM microsoft/aspnetcore.latest COPY / . WORKDIR /apps/ContosoApp CMD ["dotnet", "ContosoApp.dll"]