chore: Upgraded all projects to .NET 10.
All checks were successful
Build & Test / build (pull_request) Successful in 1m37s

This commit is contained in:
2026-02-03 16:52:59 +08:00
parent d69fe2cc1f
commit 5e606cde31
12 changed files with 29 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /App
@@ -8,7 +8,7 @@ RUN dotnet restore
RUN dotnet publish "ui/Sufi.Demo.PeopleDirectory.UI/Server/Sufi.Demo.PeopleDirectory.UI.Server.csproj" -c Release -o out
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine AS runtime
FROM mcr.microsoft.com/dotnet/aspnet:10.0-alpine AS runtime
WORKDIR /App