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

 ·  PT1H46M27S  ·  EN

az-400-devops-engineer-expert video for you have an app named App1 that is built and deployed by using containers. The Dockerfile for App1 has the following

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. "The Dockerfile uses the Docker multi-stage build feature."