From a50bef4c23a18b7280c8a907658c41b8ab5e3996 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jun 2026 13:33:57 +0000 Subject: [PATCH] Bump the dotnet-images group across 1 directory with 2 updates Bumps the dotnet-images group with 2 updates in the /docker/game-realtime directory: dotnet/sdk and dotnet/aspnet. Updates `dotnet/sdk` from 9.0.313 to 9.0.315 Updates `dotnet/aspnet` from 9.0.15 to 9.0.17 --- updated-dependencies: - dependency-name: dotnet/aspnet dependency-version: 9.0.16 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-images - dependency-name: dotnet/sdk dependency-version: 9.0.314 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-images ... Signed-off-by: dependabot[bot] --- docker/game-realtime/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/game-realtime/Dockerfile b/docker/game-realtime/Dockerfile index ca84729d..9cb90c28 100644 --- a/docker/game-realtime/Dockerfile +++ b/docker/game-realtime/Dockerfile @@ -3,7 +3,7 @@ # Usage: docker compose -f docker/game-server/docker-compose.yml build game-realtime-app # === Build Stage === -FROM mcr.microsoft.com/dotnet/sdk:9.0.313 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0.315 AS build WORKDIR /src # Copy project files for restore cache @@ -22,7 +22,7 @@ COPY src/Game.Realtime/ src/Game.Realtime/ RUN dotnet publish src/Game.Realtime/Game.Realtime.csproj -c Release -o /app/publish # === Runtime Stage === -FROM mcr.microsoft.com/dotnet/aspnet:9.0.15 AS runtime +FROM mcr.microsoft.com/dotnet/aspnet:9.0.17 AS runtime WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends curl \