From 22627a0ab4e39472d3bf893783abf15d24b1d28b Mon Sep 17 00:00:00 2001 From: vmpn Date: Mon, 20 Jun 2022 08:07:27 -0400 Subject: [PATCH] Update Dockerfile inline with requirments script changes (#387) * Use dotnet sdk 6.0 to match requirements of 3e17453993265fc545e261221f8d3a784e72b9e8 * Use python 3 to match requirements of 07a3903fda0178f7685413cdf33b6005d60c354b --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ffe5abc512..a72c2fe5003 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,13 +48,13 @@ 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 # 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