Skip to content

Commit 90f859e

Browse files
committed
chore: Upgrade .NET SDK and ASP.NET runtime to version 10.0 in Dockerfile
1 parent f20599f commit 90f859e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Presentation.Web.Server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# -------- Build stage --------
4-
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
4+
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
55
WORKDIR /src
66

77
# Copy source (use .dockerignore to exclude bin/obj/.git etc.)
@@ -13,7 +13,7 @@ RUN dotnet restore Presentation.Web.Server.csproj \
1313
&& dotnet publish Presentation.Web.Server.csproj -c Release -o /app/publish /p:UseAppHost=false
1414

1515
# -------- Runtime stage --------
16-
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS final
16+
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS final
1717
WORKDIR /app
1818

1919
# Copy published output

0 commit comments

Comments
 (0)