From 82098d0be10ff5ceb9ff8e021b96c62d570734b6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 10 Sep 2026 06:36:07 +0000 Subject: [PATCH] Update dotnet monorepo to v11 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 15dbaa9d..aeea54f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: MIT -FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build-env +FROM mcr.microsoft.com/dotnet/sdk:11.0 AS build-env # Install Node.js 18 RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ @@ -27,7 +27,7 @@ COPY . ./ RUN dotnet build Emulsion.MessageArchive.Frontend # required to publish the frontend resources RUN dotnet publish Emulsion -c Release -o /app/out -FROM mcr.microsoft.com/dotnet/aspnet:10.0 +FROM mcr.microsoft.com/dotnet/aspnet:11.0 WORKDIR /app COPY --from=build-env /app/out . ENTRYPOINT ["dotnet", "Emulsion.dll"]