mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
999 B
21 lines
999 B
9 years ago
|
#================
|
||
|
# C# dependencies
|
||
|
|
||
|
# Update to a newer version of mono
|
||
|
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
|
||
|
RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.list.d/mono-xamarin.list
|
||
|
RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | tee -a /etc/apt/sources.list.d/mono-xamarin.list
|
||
|
RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a /etc/apt/sources.list.d/mono-xamarin.list
|
||
|
RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | tee -a /etc/apt/sources.list.d/mono-xamarin.list
|
||
|
|
||
|
# Install dependencies
|
||
|
RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y ${'\\'}
|
||
|
mono-devel ${'\\'}
|
||
|
nunit ${'\\'}
|
||
|
nunit-console ${'\\'}
|
||
|
monodevelop
|
||
|
|
||
|
# Download NuGet
|
||
|
RUN cd /var/local && wget www.nuget.org/NuGet.exe
|
||
|
ENV NUGET mono /var/local/NuGet.exe
|