From 50dbbd8002ed6bafe25ffe8332b11a0b1a9de320 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 15 Feb 2026 04:26:36 +0000 Subject: [PATCH] Bump dotnet/runtime in /samples/scenarios/AutoscalingInACA/Worker Bumps dotnet/runtime from 8.0 to 10.0. --- updated-dependencies: - dependency-name: dotnet/runtime dependency-version: '10.0' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- samples/scenarios/AutoscalingInACA/Worker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/scenarios/AutoscalingInACA/Worker/Dockerfile b/samples/scenarios/AutoscalingInACA/Worker/Dockerfile index bcfa0f9e..09f97528 100644 --- a/samples/scenarios/AutoscalingInACA/Worker/Dockerfile +++ b/samples/scenarios/AutoscalingInACA/Worker/Dockerfile @@ -10,7 +10,7 @@ COPY . . RUN dotnet publish -c Release -o /app/publish # Build runtime image -FROM mcr.microsoft.com/dotnet/runtime:8.0 AS final +FROM mcr.microsoft.com/dotnet/runtime:10.0 AS final WORKDIR /app COPY --from=build /app/publish .