Skip to content

Commit ae83451

Browse files
committed
feat: Updates .NET SDK and ASP.NET base images to 10.0
Updates the .NET SDK and ASP.NET base images in the Dockerfiles for both the API and Blazor applications to version 10.0.
1 parent 8bc76dd commit ae83451

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/NoteBookmark.Api/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
22
WORKDIR /app
33
EXPOSE 8000
44
EXPOSE 8002
55

6-
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
6+
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
77
WORKDIR /src
88
# Copy central props for TargetFramework and package management
99
COPY ["Directory.Build.props", "/src/"]

src/NoteBookmark.BlazorApp/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
22
WORKDIR /app
33
EXPOSE 8004
44
EXPOSE 8006
55

6-
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
6+
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
77
WORKDIR /src
88
COPY ["Directory.Build.props", "/src/"]
99
COPY ["Directory.Packages.props", "/src/"]

0 commit comments

Comments
 (0)