From e600451eafd994081b6d2a02f2bf24ac569e86cf Mon Sep 17 00:00:00 2001 From: Paul Pacheco Date: Sat, 4 Jan 2020 19:50:29 -0600 Subject: [PATCH] add mono to docker image Please add mono to the docker image, that way I can use .net framework 4.x runtime --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7a153f8..8ba269f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN echo "deb http://http.us.debian.org/debian/ testing contrib main" >> /etc/ap chown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpg && \ chown root:root /etc/apt/sources.list.d/microsoft-prod.list && \ apt-get update && \ - apt-get install -y --no-install-recommends default-jre apt-transport-https aspnetcore-runtime-2.1 && \ + apt-get install -y --no-install-recommends default-jre apt-transport-https aspnetcore-runtime-2.1 mono-complete && \ apt-get -t testing install -y --no-install-recommends python3.7 python3-distutils && \ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \ python3.7 get-pip.py && \