From c199e66244b172f3d995315f992bf49152aa0661 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Tue, 14 Jan 2020 14:48:54 +0100 Subject: [PATCH] docker: fix dotnet sdk in test images --- tools/docker/test/ubuntu-16.04/dotnet.Dockerfile | 2 +- tools/docker/test/ubuntu-18.04/dotnet.Dockerfile | 2 +- tools/docker/test/ubuntu-19.10/dotnet.Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/docker/test/ubuntu-16.04/dotnet.Dockerfile b/tools/docker/test/ubuntu-16.04/dotnet.Dockerfile index af061839fb..05dd5a7723 100644 --- a/tools/docker/test/ubuntu-16.04/dotnet.Dockerfile +++ b/tools/docker/test/ubuntu-16.04/dotnet.Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update \ && wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb \ && dpkg -i packages-microsoft-prod.deb \ && apt-get update \ -&& apt-get install -y -q dotnet-sdk-2.1 \ +&& apt-get install -y -q dotnet-sdk-3.1 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* diff --git a/tools/docker/test/ubuntu-18.04/dotnet.Dockerfile b/tools/docker/test/ubuntu-18.04/dotnet.Dockerfile index 66f555af4d..461bb968b5 100644 --- a/tools/docker/test/ubuntu-18.04/dotnet.Dockerfile +++ b/tools/docker/test/ubuntu-18.04/dotnet.Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update -qq \ && wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb \ && dpkg -i packages-microsoft-prod.deb \ && apt-get update -qq \ -&& apt-get install -yq dotnet-sdk-2.1 \ +&& apt-get install -yq dotnet-sdk-3.1 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* diff --git a/tools/docker/test/ubuntu-19.10/dotnet.Dockerfile b/tools/docker/test/ubuntu-19.10/dotnet.Dockerfile index 028ae82ba1..f3ec209ed7 100644 --- a/tools/docker/test/ubuntu-19.10/dotnet.Dockerfile +++ b/tools/docker/test/ubuntu-19.10/dotnet.Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update -qq \ && wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb \ && dpkg -i packages-microsoft-prod.deb \ && apt-get update -qq \ -&& apt-get install -yq dotnet-sdk-2.1 \ +&& apt-get install -yq dotnet-sdk-3.1 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*