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.
14 lines
522 B
14 lines
522 B
8 years ago
|
# Install dotnet SDK based on https://www.microsoft.com/net/core#debian
|
||
|
RUN apt-get update && apt-get install -y curl libunwind8 gettext
|
||
|
RUN curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?LinkID=809130
|
||
|
RUN mkdir -p /opt/dotnet && tar zxf dotnet.tar.gz -C /opt/dotnet
|
||
|
RUN ln -s /opt/dotnet/dotnet /usr/local/bin
|
||
|
|
||
|
# Trigger the population of the local package cache
|
||
|
ENV NUGET_XMLDOC_MODE skip
|
||
|
RUN mkdir warmup ${'\\'}
|
||
|
&& cd warmup ${'\\'}
|
||
|
&& dotnet new ${'\\'}
|
||
|
&& cd .. ${'\\'}
|
||
|
&& rm -rf warmup
|