hotfix: download unreleased preview3

pull/18070/head
Jan Tattermusch 6 years ago
parent 96f4454ce7
commit d0c42dec85
  1. 7
      templates/tools/dockerfile/interoptest/grpc_interop_aspnetcore/Dockerfile.template
  2. 7
      tools/dockerfile/interoptest/grpc_interop_aspnetcore/Dockerfile

@ -16,5 +16,12 @@
FROM microsoft/dotnet:3.0.100-preview2-sdk-stretch
RUN rm /usr/bin/dotnet # remove symlink
RUN curl -sSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/3.0.100-preview3-010313/dotnet-sdk-3.0.100-preview3-010313-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
# Define the default command.
CMD ["bash"]

@ -14,5 +14,12 @@
FROM microsoft/dotnet:3.0.100-preview2-sdk-stretch
RUN rm /usr/bin/dotnet # remove symlink
RUN curl -sSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/3.0.100-preview3-010313/dotnet-sdk-3.0.100-preview3-010313-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
# Define the default command.
CMD ["bash"]

Loading…
Cancel
Save