From bcf2b72ad58e2b14859cd4685a1be585085c16b1 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 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/Notifications/Notifications.Api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/Notifications/Notifications.Api/Dockerfile b/src/Services/Notifications/Notifications.Api/Dockerfile index 541654e9..3be8c768 100644 --- a/src/Services/Notifications/Notifications.Api/Dockerfile +++ b/src/Services/Notifications/Notifications.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/Notifications/Notifications.Api/Notifications.Api.csproj"