Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(393)

Side by Side Diff: third_party/grpc/templates/tools/dockerfile/csharp_deps.include

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698