mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 06:46:33 +00:00
rename Azaion.Api -> Azaion.AdminApi
This commit is contained in:
+4
-4
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user