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/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 \
Expand Down