From ea0706c47d99e4b0f112d35573ef6e2d1368e984 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Mar 2026 09:38:56 +0000 Subject: [PATCH] chore(deps): bump dotnet/sdk in /src/Services/Identity/Identity.Api Bumps dotnet/sdk from 10.0-preview to 11.0-preview. --- updated-dependencies: - dependency-name: dotnet/sdk dependency-version: 11.0-preview dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- src/Services/Identity/Identity.Api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/Identity/Identity.Api/Dockerfile b/src/Services/Identity/Identity.Api/Dockerfile index 97b21697..5b38718d 100644 --- a/src/Services/Identity/Identity.Api/Dockerfile +++ b/src/Services/Identity/Identity.Api/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:10.0-preview AS base WORKDIR /app EXPOSE 8080 -FROM mcr.microsoft.com/dotnet/sdk:10.0-preview AS build +FROM mcr.microsoft.com/dotnet/sdk:11.0-preview AS build WORKDIR /src COPY . . RUN dotnet restore "src/Services/Identity/Identity.Api/Identity.Api.csproj"