From b9245218d5cd4c7beaa6f39f542e4c4cb443e3c0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 4 Oct 2025 04:59:27 +0000 Subject: [PATCH] Update dotnet monorepo to v10 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2b9e4468..15dbaa9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: MIT -FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build-env +FROM mcr.microsoft.com/dotnet/sdk:10.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:9.0 +FROM mcr.microsoft.com/dotnet/aspnet:10.0 WORKDIR /app COPY --from=build-env /app/out . ENTRYPOINT ["dotnet", "Emulsion.dll"]