diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2017-03-09 10:15:41 +0100 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2017-04-07 10:10:00 +0200 |
commit | 9c9e00958d1f5a09ec4ad80fb176fe6f48367639 (patch) | |
tree | 9d152cbc5173e319e596de2be7a18eda8ec0189c /templates | |
parent | bbf4e5b3267ba096a7de2aa6d9d6ed577f0ea5d0 (diff) |
Add newest dotnet SDK to C# dockerfile
Diffstat (limited to 'templates')
-rw-r--r-- | templates/tools/dockerfile/csharp_dotnetcli_deps.include | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/tools/dockerfile/csharp_dotnetcli_deps.include b/templates/tools/dockerfile/csharp_dotnetcli_deps.include index 430f3fa3f2..058ce15fb5 100644 --- a/templates/tools/dockerfile/csharp_dotnetcli_deps.include +++ b/templates/tools/dockerfile/csharp_dotnetcli_deps.include @@ -1,7 +1,11 @@ # 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 +# dotnet-dev-1.0.0-preview2-003121 +RUN curl -sSL -o dotnet100.tar.gz https://go.microsoft.com/fwlink/?LinkID=809130 +RUN mkdir -p /opt/dotnet && tar zxf dotnet100.tar.gz -C /opt/dotnet +# dotnet-dev-1.0.1 +RUN curl -sSL -o dotnet101.tar.gz https://go.microsoft.com/fwlink/?LinkID=843453 +RUN mkdir -p /opt/dotnet && tar zxf dotnet101.tar.gz -C /opt/dotnet RUN ln -s /opt/dotnet/dotnet /usr/local/bin # Trigger the population of the local package cache |