This is a dedicated watch page for a single video.
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 build uses a debug configuration."