AWS Exams GCP Exams Azure Exams GitHub Exams Jira Exams ISC2 Exams

Video: You have an app named App1 that is built and azure video

Question 1 Be Honest
« Back   Next azure az-400-devops-engineer-expert Exam Question »
Answer

Full Certification Question

You have an app named App1 that is built and deployed by using containers. The Dockerfile for App1 has the following definition. ------------- FROM mcr.microsoft.com/dotnet/sdk:8.0 AS base WORKDIR /app1 EXPOSE 80 EXPOSE 443 FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["App1.csproj", ""] RUN dotnet restore "./App1.csproj" COPY . . WORKDIR "/src/." RUN dotnet build "App1.csproj" -c Release -o /app1/build FROM build AS publish RUN dotnet publish "App1.csproj" -c Release -o /app1/publish FROM base AS final WORKDIR /app COPY --from=publish /app/publish . ENTRYPOINT ["dotnet", "App1.dll"] ------------- For the following statement, select Yes if the statement is true. Otherwise, select No. "App1 is an ASP.NET Core app."