From 30e32845d27b5dd8ee773f8f64613bdd3f861701 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 10:08:24 +0000 Subject: [PATCH] chore(deps): Bump dotnet/sdk from 9.0 to 10.0 Bumps dotnet/sdk from 9.0 to 10.0. --- updated-dependencies: - dependency-name: dotnet/sdk 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..5f71442 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ COPY ClientApp/ ./ RUN npm run build # Stage 2: Build .NET application -FROM mcr.microsoft.com/dotnet/sdk:9.0 AS backend-build +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS backend-build WORKDIR /src