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-server/prod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Google Cloud Run 用 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

# 依存関係のみ先にコピー(キャッシュ活用)
Expand All @@ -24,7 +24,7 @@ RUN dotnet publish src/Game.Server/Game.Server.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

# curl インストール(ヘルスチェック用)+ 非rootユーザー作成
RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/* \
Expand Down