From 969ce2a65101cf3b75ef571ea928a172bdd48bcc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 00:41:33 +0000 Subject: [PATCH] build(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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 875a8c0..65340e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build WORKDIR /source # Copy solution and project files @@ -23,7 +23,7 @@ RUN dotnet test -c Release --no-build --verbosity normal RUN dotnet publish src/InfinityFlow.CSharp.Eval/InfinityFlow.CSharp.Eval.csproj -c Release -o /app/publish --no-restore # Runtime stage - Use SDK for NuGet package resolution -FROM mcr.microsoft.com/dotnet/sdk:9.0 AS runtime +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS runtime WORKDIR /app # Install required dependencies for Roslyn scripting