Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: MIT

FROM mcr.microsoft.com/dotnet/sdk:6.0 AS talks-env
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS talks-env

# Install Node.js:
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
Expand All @@ -18,7 +18,7 @@ COPY ./ForneverMind/wwwroot/talks ./ForneverMind/wwwroot/talks/
COPY ./Scripts ./Scripts/
RUN pwsh ./Scripts/Prepare-Talks.ps1

FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build-env

# Install Node.js:
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
Expand All @@ -42,7 +42,7 @@ COPY ./ForneverMind.Tests ./ForneverMind.Tests/
COPY --from=talks-env /talks/ForneverMind/wwwroot/talks/ ./ForneverMind/wwwroot/talks/
RUN dotnet publish ./ForneverMind -c Release -o /app/out

FROM mcr.microsoft.com/dotnet/aspnet:6.0
FROM mcr.microsoft.com/dotnet/aspnet:10.0

WORKDIR /app

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ SPDX-License-Identifier: MIT
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.35" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.9" />
<ProjectReference Include="..\ForneverMind\ForneverMind.fsproj" />
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions ForneverMind/ForneverMind.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ SPDX-License-Identifier: MIT
<PackageReference Include="Jint" Version="4.4.0" />
<PackageReference Include="Markdig" Version="0.41.3" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="6.0.35" />
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="9.0.9" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.9" />
<PackageReference Include="RazorLight" Version="2.3.1" />
<PackageReference Include="WilderMinds.RssSyndication" Version="1.7.1" />
<ProjectReference Include="..\ForneverMind.Frontend\ForneverMind.Frontend.proj"
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.413",
"version": "9.0.305",
"rollForward": "latestMinor",
"allowPrerelease": false
}
Expand Down
Loading