OLD | NEW |
(Empty) | |
| 1 #================ |
| 2 # C# dependencies |
| 3 |
| 4 # Update to a newer version of mono |
| 5 RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14
DA29AA6A19B38D3D831EF |
| 6 RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /e
tc/apt/sources.list.d/mono-xamarin.list |
| 7 RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compa
t main" | tee -a /etc/apt/sources.list.d/mono-xamarin.list |
| 8 RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-comp
at main" | tee -a /etc/apt/sources.list.d/mono-xamarin.list |
| 9 RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat
main" | tee -a /etc/apt/sources.list.d/mono-xamarin.list |
| 10 |
| 11 # Install dependencies |
| 12 RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y ${'\\'} |
| 13 mono-devel ${'\\'} |
| 14 ca-certificates-mono ${'\\'} |
| 15 nuget ${'\\'} |
| 16 && apt-get clean |
OLD | NEW |