From 1cfa69567353ebba22ff7f59baf6b98e64b57eec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 10:00:18 +0000 Subject: [PATCH] chore(deps): Bump dotnet/aspnet from 9.0 to 10.0 Bumps dotnet/aspnet from 9.0 to 10.0. --- updated-dependencies: - dependency-name: dotnet/aspnet dependency-version: '10.0' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9a4b123..258aa3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ COPY --from=frontend-build /src/wwwroot/build ./wwwroot/build RUN dotnet publish -c Release -o /app/publish /p:UseAppHost=false /p:CI=true /p:DOCKER_BUILD=true # Use the official .NET 8 runtime image for the final stage -FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS runtime +FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime WORKDIR /app