cmake(ci): Use dotnet-sdk-8.0 on fedora:latest

Fedora 41 drop the `dotnet-sdk-6.0` package...
This commit is contained in:
Corentin Le Molgat
2024-11-08 16:20:51 +01:00
parent 3804935547
commit 0d47df66e0

View File

@@ -2,7 +2,7 @@ FROM ortools/cmake:fedora_swig AS env
# see: https://docs.microsoft.com/en-us/dotnet/core/install/linux-fedora
RUN dnf -y update \
&& dnf -y install dotnet-sdk-6.0 \
&& dnf -y install dotnet-sdk-8.0 \
&& dnf clean all
# Trigger first run experience by running arbitrary cmd
RUN dotnet --info