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.

38 lines
1.7 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 with-node
  10. RUN apt-get update
  11. RUN apt-get install curl
  12. RUN curl -sL https://deb.nodesource.com/setup_20.x | bash
  13. RUN apt-get -y install nodejs
  14. RUN npm install -g @angular/cli
  15. FROM with-node AS build
  16. ARG BUILD_CONFIGURATION=Release
  17. WORKDIR /src
  18. COPY ["AwesomeMicroservices/AwesomeMicroservices.Server/AwesomeMicroservices.Server.csproj", "AwesomeMicroservices/AwesomeMicroservices.Server/"]
  19. COPY ["awesomemicroservices.client/awesomemicroservices.client.esproj", "awesomemicroservices.client/"]
  20. RUN dotnet restore "./AwesomeMicroservices/AwesomeMicroservices.Server/AwesomeMicroservices.Server.csproj"
  21. COPY . .
  22. WORKDIR "/src/AwesomeMicroservices/AwesomeMicroservices.Server"
  23. RUN dotnet build "./AwesomeMicroservices.Server.csproj" -c $BUILD_CONFIGURATION -o /app/build
  24. # This stage is used to publish the service project to be copied to the final stage
  25. FROM build AS publish
  26. ARG BUILD_CONFIGURATION=Release
  27. RUN dotnet publish "./AwesomeMicroservices.Server.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
  28. # This stage is used in production or when running from VS in regular mode (Default when not using the Debug configuration)
  29. FROM base AS final
  30. WORKDIR /app
  31. COPY --from=publish /app/publish .
  32. ENTRYPOINT ["dotnet", "AwesomeMicroservices.Server.dll"]