##See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. # Use the ASP.NET runtime image as the base image FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base WORKDIR /app EXPOSE 80 # Use the .NET SDK image for the build stage FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build WORKDIR /src COPY ["DamageAssesment.Api.Surveys/DamageAssesment.Api.Survey.csproj", "DamageAssesment.Api.Surveys/"] RUN dotnet restore "DamageAssesment.Api.Surveys/DamageAssesment.Api.Survey.csproj" COPY . . WORKDIR "/src/DamageAssesment.Api.Surveys" RUN dotnet build "DamageAssesment.Api.Survey.csproj" -c Release -o /app/build # Publish the application FROM build AS publish RUN dotnet publish "DamageAssesment.Api.Survey.csproj" -c Release -o /app/publish /p:UseAppHost=false # Use the ASP.NET runtime image again for the final stage FROM base AS final WORKDIR /app COPY --from=publish /app/publish . ENTRYPOINT ["dotnet", "DamageAssesment.Api.Survey.dll"]