File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
HwProj.AuthService/HwProj.AuthService.API Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/core/ sdk:2.2-stretch AS build
1+ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
22WORKDIR /src
33
44COPY ["Directory.Build.props" , "Directory.Build.props" ]
55
66COPY ["HwProj.AuthService/HwProj.AuthService.API/" , "HwProj.AuthService/HwProj.AuthService.API/" ]
7- COPY ["HwProj.Common/HwProj.Utils/" , "HwProj.Common/HwProj.Utils/" ]
8- COPY ["HwProj.EventBus/HwProj.EventBus.Client/" , "HwProj.EventBus/HwProj.EventBus.Client/" ]
7+ COPY ["HwProj.Common/HwProj.Common.Net8/" , "HwProj.Common/HwProj.Common.Net8/" ]
98COPY ["HwProj.Common/HwProj.Models/" , "HwProj.Common/HwProj.Models/" ]
10- COPY ["HwProj.Common/HwProj.Repositories/" , "HwProj.Common/HwProj.Repositories/" ]
9+ COPY ["HwProj.EventBus/HwProj.EventBus.Client/" , "HwProj.EventBus/HwProj.EventBus.Client/" ]
10+ COPY ["HwProj.NotificationsService/HwProj.NotificationService.Events/" , "HwProj.NotificationsService/HwProj.NotificationService.Events/" ]
1111
1212WORKDIR "/src/HwProj.AuthService/HwProj.AuthService.API"
1313RUN dotnet publish "HwProj.AuthService.API.csproj" -c Release -o /app/publish
1414
15- FROM mcr.microsoft.com/dotnet/core/ aspnet:2.2-stretch-slim AS final
15+ FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS final
1616WORKDIR /app
1717
1818COPY --from=build /app/publish .
You can’t perform that action at this time.
0 commit comments