From d82c1263b187bd86b02753a76421544372991e56 Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Sat, 27 Apr 2024 20:16:15 +0200 Subject: [PATCH] ci: Fix ubuntu dotnet-sdk --- cmake/docker/ubuntu/dotnet.Dockerfile | 2 +- makefiles/docker/ubuntu/dotnet.Dockerfile | 2 +- tools/docker/test/ubuntu-24.04/dotnet.Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/docker/ubuntu/dotnet.Dockerfile b/cmake/docker/ubuntu/dotnet.Dockerfile index a7a2f32171..092513cdfa 100644 --- a/cmake/docker/ubuntu/dotnet.Dockerfile +++ b/cmake/docker/ubuntu/dotnet.Dockerfile @@ -3,7 +3,7 @@ FROM ortools/cmake:ubuntu_swig AS env # Install .NET SDK # see: https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu RUN apt-get update -qq \ -&& apt-get install -yq dotnet-sdk-6.0 \ +&& apt-get install -yq dotnet-sdk-8.0 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # Trigger first run experience by running arbitrary cmd diff --git a/makefiles/docker/ubuntu/dotnet.Dockerfile b/makefiles/docker/ubuntu/dotnet.Dockerfile index 11f1745dc2..78fa9a7f85 100644 --- a/makefiles/docker/ubuntu/dotnet.Dockerfile +++ b/makefiles/docker/ubuntu/dotnet.Dockerfile @@ -3,7 +3,7 @@ FROM ortools/make:ubuntu_swig AS env # Install .Net # see: https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu RUN apt-get update -qq \ -&& apt-get install -yq dotnet-sdk-6.0 \ +&& apt-get install -yq dotnet-sdk-8.0 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # Trigger first run experience by running arbitrary cmd diff --git a/tools/docker/test/ubuntu-24.04/dotnet.Dockerfile b/tools/docker/test/ubuntu-24.04/dotnet.Dockerfile index 578a8943f1..9395469fa7 100644 --- a/tools/docker/test/ubuntu-24.04/dotnet.Dockerfile +++ b/tools/docker/test/ubuntu-24.04/dotnet.Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update -qq \ # Install .Net # see https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu-2304 RUN apt-get update -qq \ -&& apt-get install -yq dotnet-sdk-6.0 \ +&& apt-get install -yq dotnet-sdk-8.0 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # Trigger first run experience by running arbitrary cmd