We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f20599f commit 90f859eCopy full SHA for 90f859e
1 file changed
src/Presentation.Web.Server/Dockerfile
@@ -1,7 +1,7 @@
1
# syntax=docker/dockerfile:1
2
3
# -------- Build stage --------
4
-FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
+FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
5
WORKDIR /src
6
7
# Copy source (use .dockerignore to exclude bin/obj/.git etc.)
@@ -13,7 +13,7 @@ RUN dotnet restore Presentation.Web.Server.csproj \
13
&& dotnet publish Presentation.Web.Server.csproj -c Release -o /app/publish /p:UseAppHost=false
14
15
# -------- Runtime stage --------
16
-FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS final
+FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS final
17
WORKDIR /app
18
19
# Copy published output
0 commit comments