Skip to content

Instantly share code, notes, and snippets.

@pjvds
Created October 27, 2013 17:54
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save pjvds/7185693 to your computer and use it in GitHub Desktop.
Save pjvds/7185693 to your computer and use it in GitHub Desktop.
Script that installs Mono 3.2.3 on ubuntu docker container.
apt-get install -y wget build-essential gettext autoconf automake libtool
wget http://download.mono-project.com/sources/mono/mono-3.2.3.tar.bz2
bunzip2 -df mono-3.2.3.tar.bz2
tar -xf mono-3.2.3.tar
cd mono-3.2.3
./configure --prefix=/usr/local; make; make install
rm -rf /tmp/*
apt-get remove --purge wget build-essential gettext autoconf automake libtool
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment