Skip to content

Commit abaa4d7

Browse files
Update dotnet monorepo to v9
1 parent 33a8932 commit abaa4d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Codingteam.Site/Codingteam.Site.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
<Compile Include="Program.fs" />
2525
</ItemGroup>
2626
<ItemGroup>
27-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.11" />
27+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="9.0.0" />
2828
</ItemGroup>
2929
</Project>

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
1+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build-env
22

33
WORKDIR /app
44

@@ -9,7 +9,7 @@ COPY Codingteam.Site ./Codingteam.Site/
99
RUN dotnet build --no-restore --configuration Release Codingteam.Site
1010
RUN dotnet publish --no-build --configuration Release --output publish Codingteam.Site
1111

12-
FROM mcr.microsoft.com/dotnet/aspnet:8.0
12+
FROM mcr.microsoft.com/dotnet/aspnet:9.0
1313
WORKDIR /app
1414

1515
COPY --from=build-env /app/publish .

0 commit comments

Comments
 (0)