From 5e25b6deb9bf83f22abe7e7fa9670b37edc669cd Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 18 Mar 2025 23:03:25 +0000 Subject: [PATCH] chore(deps): update mcr.microsoft.com/dotnet/runtime docker tag to v9 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 677db87..7846140 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN dotnet restore COPY . . RUN dotnet publish --self-contained -r debian.12-x64 -c Release -o out -FROM mcr.microsoft.com/dotnet/runtime:6.0-bookworm-slim AS runtime +FROM mcr.microsoft.com/dotnet/runtime:9.0-bookworm-slim AS runtime WORKDIR /app COPY --from=build /app/out .