rename Azaion.Api -> Azaion.AdminApi

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-03-25 17:57:27 +02:00
parent 61f7c36198
commit ce44d565c8
10 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -9,14 +9,14 @@ WORKDIR /app
COPY . .
RUN dotnet restore
WORKDIR "/app/Azaion.Api"
RUN dotnet build "Azaion.Api.csproj" -c Release -o /app/build
WORKDIR "/app/Azaion.AdminApi"
RUN dotnet build "Azaion.AdminApi.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "Azaion.Api.csproj" -c Release -o /app/publish /p:UseAppHost=false
RUN dotnet publish "Azaion.AdminApi.csproj" -c Release -o /app/publish /p:UseAppHost=false
# Build runtime
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Azaion.Api.dll"]
ENTRYPOINT ["dotnet", "Azaion.AdminApi.dll"]