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.
|
|
|
# Install dotnet SDK
|
|
|
|
ENV DOTNET_SDK_VERSION 2.1.500
|
|
|
|
RUN curl -sSL -o dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_SDK_VERSION/dotnet-sdk-$DOTNET_SDK_VERSION-linux-x64.tar.gz ${'\\'}
|
|
|
|
&& mkdir -p /usr/share/dotnet ${'\\'}
|
|
|
|
&& tar -zxf dotnet.tar.gz -C /usr/share/dotnet ${'\\'}
|
|
|
|
&& rm dotnet.tar.gz ${'\\'}
|
|
|
|
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet
|
|
|
|
|
|
|
|
|
|
|
|
# Install .NET Core 1.1.10 runtime (required to run netcoreapp1.1)
|
|
|
|
RUN curl -sSL -o dotnet_old.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/1.1.10/dotnet-debian.9-x64.1.1.10.tar.gz ${'\\'}
|
|
|
|
&& mkdir -p dotnet_old ${'\\'}
|
|
|
|
&& tar zxf dotnet_old.tar.gz -C dotnet_old ${'\\'}
|
|
|
|
&& cp -r dotnet_old/shared/Microsoft.NETCore.App/1.1.10/ /usr/share/dotnet/shared/Microsoft.NETCore.App/ ${'\\'}
|
|
|
|
&& rm -rf dotnet_old/ dotnet_old.tar.gz
|
|
|
|
RUN apt-get update && apt-get install -y libunwind8 && apt-get clean
|
|
|
|
|
|
|
|
|
|
|
|
# Trigger the population of the local package cache
|
|
|
|
ENV NUGET_XMLDOC_MODE skip
|
|
|
|
RUN mkdir warmup ${'\\'}
|
|
|
|
&& cd warmup ${'\\'}
|
|
|
|
&& dotnet new ${'\\'}
|
|
|
|
&& cd .. ${'\\'}
|
|
|
|
&& rm -rf warmup
|