From 3fdc1c0868ada6b40d2e82aa1e869187ed79b485 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 08:08:50 +0000 Subject: [PATCH] Bump dotnet/aspnet from `1fa23fc` to `f1126d4` in the docker group Bumps the docker group with 1 update: dotnet/aspnet. Updates `dotnet/aspnet` from `1fa23fc` to `f1126d4` --- updated-dependencies: - dependency-name: dotnet/aspnet dependency-version: 10.0-noble dependency-type: direct:production dependency-group: docker ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a8d9f2a..a71ff38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:10.0-noble AS build +FROM mcr.microsoft.com/dotnet/sdk:10.0-noble AS build WORKDIR /src COPY --link *.props *.props ./ COPY --link Desktop/*.csproj Desktop/ @@ -9,7 +9,7 @@ RUN dotnet restore Desktop/Desktop.csproj /p:Configuration=Release-Web COPY . . RUN dotnet publish Desktop/Desktop.csproj -c Release-Web -o /publish/Web-Linux -FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble@sha256:1fa23fc4872d95fd71c2833ebe65d7e84a43b2d51a31d119516852f13d9505a7 AS runtime +FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble@sha256:f1126d438ccc359f51cc6d4701a8deae513856cf10f5fe645d29ea6403dcac6b AS runtime WORKDIR /app LABEL org.opencontainers.image.authors="team@openshock.org"