From 25a2e5362ee5b45121683eb8b397651be570d6d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Aug 2025 17:10:50 +0000 Subject: [PATCH] docker: bump dotnet/aspnet from 8.0-alpine to 9.0-alpine Bumps dotnet/aspnet from 8.0-alpine to 9.0-alpine. --- updated-dependencies: - dependency-name: dotnet/aspnet dependency-version: 9.0-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8a08343..c7d51d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ FROM build AS publish RUN dotnet publish "RmsDemo.csproj" -c Release -o /app/publish /p:UseAppHost=false # Runtime stage -FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine AS final +FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine AS final # Security: Create non-root user RUN addgroup -g 1001 -S appgroup && \