Skip to content

Commit 9662123

Browse files
authored
chore(Docker): support net10 image (#6995)
1 parent b801dce commit 9662123

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BootstrapBlazor.Server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Depending on the operating system of the host machines(s) that will build or run the containers, the image specified in the FROM statement may need to be changed.
22
#For more information, please see https://aka.ms/containercompat
33

4-
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
4+
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
55
WORKDIR /app
66
EXPOSE 8080
77

@@ -11,7 +11,7 @@ RUN apt install -y ./google-chrome-stable_current_amd64.deb
1111
RUN rm ./google-chrome-stable_current_amd64.deb
1212
RUN apt install -y fonts-wqy-microhei
1313

14-
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
14+
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
1515
WORKDIR /
1616
COPY . .
1717

0 commit comments

Comments
 (0)