From 072925bd3816eabf8bda9588663eca63bf7133f4 Mon Sep 17 00:00:00 2001 From: Vladimir Berezniker Date: Sat, 18 Jun 2022 23:22:39 -0400 Subject: [PATCH 1/2] Use dotnet sdk 6.0 to match requirements of 3e17453993265fc545e261221f8d3a784e72b9e8 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ffe5abc512..27eceff605b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,7 +48,7 @@ RUN apt install -y software-properties-common RUN add-apt-repository universe -y RUN apt install -y apt-transport-https RUN apt update -y -RUN apt install -y dotnet-sdk-3.1 +RUN apt install -y dotnet-sdk-6.0 # Required for "with-go" profile RUN apt install -y golang From 6e1fd44ef5a9156f4de1a638c149b448c5f35f58 Mon Sep 17 00:00:00 2001 From: Vladimir Berezniker Date: Sat, 18 Jun 2022 23:24:14 -0400 Subject: [PATCH 2/2] Use python 3 to match requirements of 07a3903fda0178f7685413cdf33b6005d60c354b --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 27eceff605b..a72c2fe5003 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,7 +54,7 @@ RUN apt install -y dotnet-sdk-6.0 RUN apt install -y golang # Required for "with-python" profile -RUN apt install -y python-setuptools python +RUN apt install -y python-setuptools python3 python-is-python3 # Required for running on Windows systems RUN apt install -y dos2unix