From 123ded1f77979ec2ebc4583503230b6136f1d720 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Jul 2026 18:58:28 +0000 Subject: [PATCH] chore(deps): Bump the docker-dependencies group across 1 directory with 2 updates Bumps the docker-dependencies group with 2 updates in the / directory: dotnet/sdk and dotnet/aspnet. Updates `dotnet/sdk` from 10.0.301 to 10.0.302 Updates `dotnet/aspnet` from 10.0.9 to 10.0.10 --- updated-dependencies: - dependency-name: dotnet/aspnet dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-dependencies - dependency-name: dotnet/sdk dependency-version: 10.0.302 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-dependencies ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index da4c4631..8a669e06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Root Dockerfile — builds JD.AI.Daemon (default workload). # For other targets see deploy/docker/Dockerfile.gateway and deploy/docker/Dockerfile.tui. -FROM mcr.microsoft.com/dotnet/sdk:10.0.301 AS build +FROM mcr.microsoft.com/dotnet/sdk:10.0.302 AS build WORKDIR /src COPY . . RUN dotnet restore src/JD.AI.Daemon/JD.AI.Daemon.csproj @@ -12,7 +12,7 @@ RUN dotnet publish src/JD.AI.Daemon/JD.AI.Daemon.csproj \ --no-restore \ /p:UseAppHost=false -FROM mcr.microsoft.com/dotnet/aspnet:10.0.9 AS runtime +FROM mcr.microsoft.com/dotnet/aspnet:10.0.10 AS runtime WORKDIR /app COPY --from=build /app/publish . EXPOSE 15790