From d2850b1ce969d93d3ec5bb0dfc0de3962fa95c7d Mon Sep 17 00:00:00 2001 From: Lee Campbell Date: Sun, 22 Mar 2026 16:45:16 +0800 Subject: [PATCH] fix: correct Docker base image to existing tag 10.0-bookworm-slim does not exist on MCR. .NET 10 SDK images use Ubuntu Noble (24.04) as the default distro. Switch to 10.0-noble. Co-Authored-By: Claude Opus 4.6 --- autonomous/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autonomous/Dockerfile b/autonomous/Dockerfile index 053ba65..a4b6554 100644 --- a/autonomous/Dockerfile +++ b/autonomous/Dockerfile @@ -2,7 +2,7 @@ # HdrHistogram.NET Agent Container # .NET SDK + Claude Code + gh CLI + firewall # ============================================================================= -FROM mcr.microsoft.com/dotnet/sdk:10.0-bookworm-slim +FROM mcr.microsoft.com/dotnet/sdk:10.0-noble RUN dotnet_version=8.0 \ && curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin \ --runtime dotnet --channel $dotnet_version --install-dir /usr/share/dotnet \