You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.3 KiB

  1. # 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.
  2. # This stage is used when running from VS in fast mode (Default for Debug configuration)
  3. FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
  4. USER $APP_UID
  5. WORKDIR /app
  6. EXPOSE 8080
  7. EXPOSE 8081
  8. # This stage is used to build the service project
  9. FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
  10. ARG BUILD_CONFIGURATION=Release
  11. WORKDIR /src
  12. COPY ["AwesomeMicroservices.WebApi/AwesomeMicroservices.WebApi.csproj", "AwesomeMicroservices.WebApi/"]
  13. RUN dotnet restore "./AwesomeMicroservices.WebApi/AwesomeMicroservices.WebApi.csproj"
  14. COPY . .
  15. WORKDIR "/src/AwesomeMicroservices.WebApi"
  16. RUN dotnet build "./AwesomeMicroservices.WebApi.csproj" -c $BUILD_CONFIGURATION -o /app/build
  17. # This stage is used to publish the service project to be copied to the final stage
  18. FROM build AS publish
  19. ARG BUILD_CONFIGURATION=Release
  20. RUN dotnet publish "./AwesomeMicroservices.WebApi.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
  21. # This stage is used in production or when running from VS in regular mode (Default when not using the Debug configuration)
  22. FROM base AS final
  23. WORKDIR /app
  24. COPY --from=publish /app/publish .
  25. ENTRYPOINT ["dotnet", "AwesomeMicroservices.WebApi.dll"]