Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/game-realtime/prod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Game.Realtime 本番用 Dockerfile

# ===== 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 Directory.Packages.props ./
Expand All @@ -20,7 +20,7 @@ RUN dotnet publish src/Game.Realtime/Game.Realtime.csproj \
-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

RUN groupadd -r appgroup && useradd -r -g appgroup appuser

Expand Down