Очистка мусора

This commit is contained in:
Халимов Рустам
2026-03-15 21:36:49 +03:00
parent c14999d319
commit 893c9f2316
424 changed files with 689 additions and 493340 deletions
+3 -3
View File
@@ -3,10 +3,10 @@ WORKDIR /app
# Copy everything and restore as distinct layers
COPY . .
RUN dotnet restore apps/server-net/Vortex.sln
RUN dotnet restore apps/server-net/Knot.sln
# Build and publish a release
RUN dotnet publish apps/server-net/src/Vortex.Host/Vortex.Host.csproj -c Release -o out
RUN dotnet publish apps/server-net/src/Host/Host.csproj -c Release -o out
# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:10.0-preview
@@ -20,4 +20,4 @@ COPY --from=build /app/out .
EXPOSE 8080
ENV ASPNETCORE_URLS=http://+:8080
ENTRYPOINT ["dotnet", "Vortex.Host.dll"]
ENTRYPOINT ["dotnet", "Host.dll"]