Skip to content

Commit

Permalink
Merge pull request #8 from gnadaban/add-mono-to-support-dotnet-builds
Browse files Browse the repository at this point in the history
Add Mono SDK to support .NET builds
  • Loading branch information
blueskyjunkie authored Jul 16, 2021
2 parents 90a9792 + a5b63ca commit 8152ad3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ RUN echo "APT::Get::Assume-Yes \"true\";" > /etc/apt/apt.conf.d/90assumeyes

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
dirmngr \
software-properties-common \
apt-transport-https \
ca-certificates \
curl \
Expand All @@ -27,6 +29,10 @@ RUN apt-get update \
&& LIBICU_FILE="libicu66_66.1-2ubuntu2_amd64.deb" \
&& curl -fsSLo ${LIBICU_FILE} https://mirrors.edge.kernel.org/ubuntu/pool/main/i/icu/${LIBICU_FILE} \
&& dpkg -i ${LIBICU_FILE} \
# Install Mono
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF \
&& apt-add-repository 'deb https://download.mono-project.com/repo/ubuntu stable-focal main' \
&& apt install -y --no-install-recommends mono-complete=6.12.\* \
# Install Azure CLI
&& curl -sL https://packages.microsoft.com/keys/microsoft.asc | \
gpg --dearmor | \
Expand Down

0 comments on commit 8152ad3

Please sign in to comment.