Skip to content

Commit

Permalink
Update to 3.0 latest (#791)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSimons authored Nov 7, 2018
1 parent 88113bc commit 8246e49
Show file tree
Hide file tree
Showing 30 changed files with 97 additions and 97 deletions.
4 changes: 2 additions & 2 deletions 3.0/aspnetcore-runtime/alpine3.8/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM microsoft/dotnet-nightly:3.0-runtime-deps-alpine3.8

# Install ASP.NET Core
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10062
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10663

RUN wget -O aspnetcore.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/$ASPNETCORE_VERSION/aspnetcore-runtime-$ASPNETCORE_VERSION-linux-musl-x64.tar.gz \
&& aspnetcore_sha512='af227097846d6af9f5ef3bab6815f81b89c7f1ffa2f03f19b757e46f7417cf7d7ef10fab427f00f5c3adb54a19743cacc7163155f3c865cab1fd3c4ee0047f56' \
&& aspnetcore_sha512='aa296d10f4b1f1042eff8949c3c2f325fff46d1cd34dc1c06d1d56cf966a569db73266e3bd9baaebaf594951f2eeea00d2a05711ce85f98a5877c5aa63f3c5a1' \
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf aspnetcore.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/aspnetcore-runtime/bionic/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10062
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10663

RUN curl -SL --output aspnetcore.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/$ASPNETCORE_VERSION/aspnetcore-runtime-$ASPNETCORE_VERSION-linux-x64.tar.gz \
&& aspnetcore_sha512='7ebcb391ca456728bcbb39a38cc7ac87dc73dbe78097175bcdf92973c3b497d4ff2945d8e00eda68f4cec5f567ba45a06edb1d9de15e37e852468c6139de6156' \
&& aspnetcore_sha512='4d96d6abcd188414e83a392eb79765978734ba7b236e9abe9a6e676fd393e2e82bb9de4578d1c4cf6870c180f45949ae8f3d2612c50c1a41381c24bc908c74ca' \
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf aspnetcore.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/aspnetcore-runtime/bionic/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install ASP.NET Core
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10062
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10663

RUN curl -SL --output aspnetcore.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/$ASPNETCORE_VERSION/aspnetcore-runtime-$ASPNETCORE_VERSION-linux-arm.tar.gz \
&& aspnetcore_sha512='7d6cabc21d98a53121d25e922b371185c119932dd8cf76efe5227882eea942c2c4050524bb2e02d8e4a2d64694896a23d9c3757f92450ea78a7e14ce1f8016dc' \
&& aspnetcore_sha512='a659803a12856faaa9d13015a71ce8e80a86187c788a6a7ea235aec102fada89ef5a789a4bacbda886fa17aeb516f32fc142abe9dec6964f9bcfb072ec39c762' \
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf aspnetcore.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/aspnetcore-runtime/nanoserver-1709/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ FROM microsoft/windowsservercore:1709 AS installer-env
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Install ASP.NET Core Runtime
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10062
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10663

RUN Invoke-WebRequest -OutFile aspnetcore.zip https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/$Env:ASPNETCORE_VERSION/aspnetcore-runtime-$Env:ASPNETCORE_VERSION-win-x64.zip; `
$aspnetcore_sha512 = '656b06fba35348af3b43724fe33d63b33b07e1f53374f679a0c96091736550f9683c1466f7aac67f0fef61bd039d4a36ea11997bd4fde236532bc813c870d53c'; `
$aspnetcore_sha512 = '2cb7e084ff34986bb1ae1c86dc1142b963a721e55039387b074b7cbb466dbd294e30b58bbd9137dcdc4ba26be6d414bbbcd3a3524d7bec1741cd53607bf2bbd0'; `
if ((Get-FileHash aspnetcore.zip -Algorithm sha512).Hash -ne $aspnetcore_sha512) { `
Write-Host 'CHECKSUM VERIFICATION FAILED!'; `
exit 1; `
Expand Down
4 changes: 2 additions & 2 deletions 3.0/aspnetcore-runtime/nanoserver-1803/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ FROM microsoft/windowsservercore:1803 AS installer-env
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Install ASP.NET Core Runtime
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10062
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10663

RUN Invoke-WebRequest -OutFile aspnetcore.zip https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/$Env:ASPNETCORE_VERSION/aspnetcore-runtime-$Env:ASPNETCORE_VERSION-win-x64.zip; `
$aspnetcore_sha512 = '656b06fba35348af3b43724fe33d63b33b07e1f53374f679a0c96091736550f9683c1466f7aac67f0fef61bd039d4a36ea11997bd4fde236532bc813c870d53c'; `
$aspnetcore_sha512 = '2cb7e084ff34986bb1ae1c86dc1142b963a721e55039387b074b7cbb466dbd294e30b58bbd9137dcdc4ba26be6d414bbbcd3a3524d7bec1741cd53607bf2bbd0'; `
if ((Get-FileHash aspnetcore.zip -Algorithm sha512).Hash -ne $aspnetcore_sha512) { `
Write-Host 'CHECKSUM VERIFICATION FAILED!'; `
exit 1; `
Expand Down
4 changes: 2 additions & 2 deletions 3.0/aspnetcore-runtime/nanoserver-sac2016/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ FROM microsoft/nanoserver:sac2016
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Install ASP.NET Core Runtime
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10062
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10663

RUN Invoke-WebRequest -OutFile aspnetcore.zip https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/$Env:ASPNETCORE_VERSION/aspnetcore-runtime-$Env:ASPNETCORE_VERSION-win-x64.zip; `
$aspnetcore_sha512 = '656b06fba35348af3b43724fe33d63b33b07e1f53374f679a0c96091736550f9683c1466f7aac67f0fef61bd039d4a36ea11997bd4fde236532bc813c870d53c'; `
$aspnetcore_sha512 = '2cb7e084ff34986bb1ae1c86dc1142b963a721e55039387b074b7cbb466dbd294e30b58bbd9137dcdc4ba26be6d414bbbcd3a3524d7bec1741cd53607bf2bbd0'; `
if ((Get-FileHash aspnetcore.zip -Algorithm sha512).Hash -ne $aspnetcore_sha512) { `
Write-Host 'CHECKSUM VERIFICATION FAILED!'; `
exit 1; `
Expand Down
4 changes: 2 additions & 2 deletions 3.0/aspnetcore-runtime/stretch-slim/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install ASP.NET Core
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10062
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10663

RUN curl -SL --output aspnetcore.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/$ASPNETCORE_VERSION/aspnetcore-runtime-$ASPNETCORE_VERSION-linux-x64.tar.gz \
&& aspnetcore_sha512='7ebcb391ca456728bcbb39a38cc7ac87dc73dbe78097175bcdf92973c3b497d4ff2945d8e00eda68f4cec5f567ba45a06edb1d9de15e37e852468c6139de6156' \
&& aspnetcore_sha512='4d96d6abcd188414e83a392eb79765978734ba7b236e9abe9a6e676fd393e2e82bb9de4578d1c4cf6870c180f45949ae8f3d2612c50c1a41381c24bc908c74ca' \
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf aspnetcore.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/aspnetcore-runtime/stretch-slim/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install ASP.NET Core
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10062
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10663

RUN curl -SL --output aspnetcore.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/$ASPNETCORE_VERSION/aspnetcore-runtime-$ASPNETCORE_VERSION-linux-arm.tar.gz \
&& aspnetcore_sha512='7d6cabc21d98a53121d25e922b371185c119932dd8cf76efe5227882eea942c2c4050524bb2e02d8e4a2d64694896a23d9c3757f92450ea78a7e14ce1f8016dc' \
&& aspnetcore_sha512='a659803a12856faaa9d13015a71ce8e80a86187c788a6a7ea235aec102fada89ef5a789a4bacbda886fa17aeb516f32fc142abe9dec6964f9bcfb072ec39c762' \
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf aspnetcore.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/runtime/alpine3.8/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM microsoft/dotnet-nightly:3.0-runtime-deps-alpine3.8

# Install .NET Core
ENV DOTNET_VERSION 3.0.0-preview1-27018-05
ENV DOTNET_VERSION 3.0.0-preview-27106-02

RUN wget -O dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/$DOTNET_VERSION/dotnet-runtime-$DOTNET_VERSION-linux-musl-x64.tar.gz \
&& dotnet_sha512='37e6387f16d6114e5e760530314853ea63b2eace2c61ecf527b9a6abf4e722238dbcdb2bf10dfc9b48bf63eb7ee4f93a91e29fead071d8cc1e479abbf54951b1' \
&& dotnet_sha512='90ec30438a28b3b9f805f9238bcef14551dcc2485d01a37a54e7d04fd567aa232e09a1ee683f877d2799950a9a62ee97f1fa862d48cf1094e994fbb3571b7db8' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -C /usr/share/dotnet -xzf dotnet.tar.gz \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/runtime/bionic/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV DOTNET_VERSION 3.0.0-preview1-27018-05
ENV DOTNET_VERSION 3.0.0-preview-27106-02

RUN curl -SL --output dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/$DOTNET_VERSION/dotnet-runtime-$DOTNET_VERSION-linux-x64.tar.gz \
&& dotnet_sha512='31dd95dd3769bc3d2a8f82f68ff8277df75baeb8543c9f58ebea1068380f77c07f4545b1d3b18fcbd63c3d12efcaa0b585729f1e83919dda018c1169a80932ae' \
&& dotnet_sha512='e8efc4e41d5e0fd4120ae02b358856832f3e234f70bdc19d3903ef0341038a815e780ca614222d30530eb720475038462a0a6778942c1ef9e83cf9b7d2301df0' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf dotnet.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/runtime/bionic/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV DOTNET_VERSION 3.0.0-preview1-27018-05
ENV DOTNET_VERSION 3.0.0-preview-27106-02

RUN curl -SL --output dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/$DOTNET_VERSION/dotnet-runtime-$DOTNET_VERSION-linux-arm.tar.gz \
&& dotnet_sha512='67c0c95aec0fba795b08d4d01266fcf142800f9419724ef9f4f193db431e8d3fcf33f0d1e817d90e39c8bd39a095bd8b8efc1269646e5a3f2ad23ec52307d8cf' \
&& dotnet_sha512='976b3a565ae74f3f3020ef1a35b80c92e767833db6794d8c3f30da3d13b6e0fb2d3331d147d6e2b8153d8db2de0752ea04cb1e628abf8e25e699f2530a28aeb1' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf dotnet.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/runtime/bionic/arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV DOTNET_VERSION 3.0.0-preview1-27018-05
ENV DOTNET_VERSION 3.0.0-preview-27106-02

RUN curl -SL --output dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/$DOTNET_VERSION/dotnet-runtime-$DOTNET_VERSION-linux-arm64.tar.gz \
&& dotnet_sha512='56d057236666e75e4af02fb11ad9a9da79c814972cd82c0cc013b6a4b5d7979e7774076eb94b0da064708361b0144deadfc081cf56f32871aaf1c5ac560f8135' \
&& dotnet_sha512='52be92f6e3070b6a1d39ae6aa99b76c3af8703b772abc8d3d164432dfe4f6b6059621702a508656c87954a24602046dc6c910783963c8f57822d2a2f12f27afb' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf dotnet.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/runtime/nanoserver-1709/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ FROM microsoft/windowsservercore:1709 AS installer-env
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Retrieve .NET Core Runtime
ENV DOTNET_VERSION 3.0.0-preview1-27018-05
ENV DOTNET_VERSION 3.0.0-preview-27106-02

RUN Invoke-WebRequest -OutFile dotnet.zip https://dotnetcli.blob.core.windows.net/dotnet/Runtime/$Env:DOTNET_VERSION/dotnet-runtime-$Env:DOTNET_VERSION-win-x64.zip; `
$dotnet_sha512 = '10598665955accb026c4212906334ca4e958b4b0161ff956c46cca41cb552971433a2b8c30ebb44a8dff7374bad255d33ca206338450604875ea65b3289af133'; `
$dotnet_sha512 = '8eee7e2a226820d9a6d4dc67fe36e5db77fcb8892c8883e3711e7f44b78f1019d6bfba1d69029d3b902237fdb9721003d0839a2707d344578ba6ecee4067d556'; `
if ((Get-FileHash dotnet.zip -Algorithm sha512).Hash -ne $dotnet_sha512) { `
Write-Host 'CHECKSUM VERIFICATION FAILED!'; `
exit 1; `
Expand Down
4 changes: 2 additions & 2 deletions 3.0/runtime/nanoserver-1803/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ FROM microsoft/windowsservercore:1803 AS installer-env
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Retrieve .NET Core Runtime
ENV DOTNET_VERSION 3.0.0-preview1-27018-05
ENV DOTNET_VERSION 3.0.0-preview-27106-02

RUN Invoke-WebRequest -OutFile dotnet.zip https://dotnetcli.blob.core.windows.net/dotnet/Runtime/$Env:DOTNET_VERSION/dotnet-runtime-$Env:DOTNET_VERSION-win-x64.zip; `
$dotnet_sha512 = '10598665955accb026c4212906334ca4e958b4b0161ff956c46cca41cb552971433a2b8c30ebb44a8dff7374bad255d33ca206338450604875ea65b3289af133'; `
$dotnet_sha512 = '8eee7e2a226820d9a6d4dc67fe36e5db77fcb8892c8883e3711e7f44b78f1019d6bfba1d69029d3b902237fdb9721003d0839a2707d344578ba6ecee4067d556'; `
if ((Get-FileHash dotnet.zip -Algorithm sha512).Hash -ne $dotnet_sha512) { `
Write-Host 'CHECKSUM VERIFICATION FAILED!'; `
exit 1; `
Expand Down
4 changes: 2 additions & 2 deletions 3.0/runtime/nanoserver-sac2016/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ FROM microsoft/nanoserver:sac2016
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Install .NET Core
ENV DOTNET_VERSION 3.0.0-preview1-27018-05
ENV DOTNET_VERSION 3.0.0-preview-27106-02

RUN Invoke-WebRequest -OutFile dotnet.zip https://dotnetcli.blob.core.windows.net/dotnet/Runtime/$Env:DOTNET_VERSION/dotnet-runtime-$Env:DOTNET_VERSION-win-x64.zip; `
$dotnet_sha512 = '10598665955accb026c4212906334ca4e958b4b0161ff956c46cca41cb552971433a2b8c30ebb44a8dff7374bad255d33ca206338450604875ea65b3289af133'; `
$dotnet_sha512 = '8eee7e2a226820d9a6d4dc67fe36e5db77fcb8892c8883e3711e7f44b78f1019d6bfba1d69029d3b902237fdb9721003d0839a2707d344578ba6ecee4067d556'; `
if ((Get-FileHash dotnet.zip -Algorithm sha512).Hash -ne $dotnet_sha512) { `
Write-Host 'CHECKSUM VERIFICATION FAILED!'; `
exit 1; `
Expand Down
4 changes: 2 additions & 2 deletions 3.0/runtime/stretch-slim/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV DOTNET_VERSION 3.0.0-preview1-27018-05
ENV DOTNET_VERSION 3.0.0-preview-27106-02

RUN curl -SL --output dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/$DOTNET_VERSION/dotnet-runtime-$DOTNET_VERSION-linux-x64.tar.gz \
&& dotnet_sha512='31dd95dd3769bc3d2a8f82f68ff8277df75baeb8543c9f58ebea1068380f77c07f4545b1d3b18fcbd63c3d12efcaa0b585729f1e83919dda018c1169a80932ae' \
&& dotnet_sha512='e8efc4e41d5e0fd4120ae02b358856832f3e234f70bdc19d3903ef0341038a815e780ca614222d30530eb720475038462a0a6778942c1ef9e83cf9b7d2301df0' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf dotnet.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/runtime/stretch-slim/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV DOTNET_VERSION 3.0.0-preview1-27018-05
ENV DOTNET_VERSION 3.0.0-preview-27106-02

RUN curl -SL --output dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/$DOTNET_VERSION/dotnet-runtime-$DOTNET_VERSION-linux-arm.tar.gz \
&& dotnet_sha512='67c0c95aec0fba795b08d4d01266fcf142800f9419724ef9f4f193db431e8d3fcf33f0d1e817d90e39c8bd39a095bd8b8efc1269646e5a3f2ad23ec52307d8cf' \
&& dotnet_sha512='976b3a565ae74f3f3020ef1a35b80c92e767833db6794d8c3f30da3d13b6e0fb2d3331d147d6e2b8153d8db2de0752ea04cb1e628abf8e25e699f2530a28aeb1' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf dotnet.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/runtime/stretch-slim/arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV DOTNET_VERSION 3.0.0-preview1-27018-05
ENV DOTNET_VERSION 3.0.0-preview-27106-02

RUN curl -SL --output dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/$DOTNET_VERSION/dotnet-runtime-$DOTNET_VERSION-linux-arm64.tar.gz \
&& dotnet_sha512='56d057236666e75e4af02fb11ad9a9da79c814972cd82c0cc013b6a4b5d7979e7774076eb94b0da064708361b0144deadfc081cf56f32871aaf1c5ac560f8135' \
&& dotnet_sha512='52be92f6e3070b6a1d39ae6aa99b76c3af8703b772abc8d3d164432dfe4f6b6059621702a508656c87954a24602046dc6c910783963c8f57822d2a2f12f27afb' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf dotnet.tar.gz -C /usr/share/dotnet \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/sdk/alpine3.8/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false \
LANG=en_US.UTF-8

# Install .NET Core SDK
ENV DOTNET_SDK_VERSION 3.0.100-alpha1-009697
ENV DOTNET_SDK_VERSION 3.0.100-preview-009734

RUN wget -O dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_SDK_VERSION/dotnet-sdk-$DOTNET_SDK_VERSION-linux-musl-x64.tar.gz \
&& dotnet_sha512='85ad6c899469a461059a767799347d6f9d04fb19e9c1bd0190f8416ae459662c04c05dfcc5ed0485d3373163b49349e07be0bf68335356957dcb9b6dfe5c3e51' \
&& dotnet_sha512='6491481350d6e9904d5b5c6a7e172b76121f9bf593d3ed8cff311dab6d704929fd34d51888dce56a88945683a6dc026f27c49735ccd5d51548c442fa89726588' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -C /usr/share/dotnet -xzf dotnet.tar.gz \
Expand Down
4 changes: 2 additions & 2 deletions 3.0/sdk/bionic/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core SDK
ENV DOTNET_SDK_VERSION 3.0.100-alpha1-009697
ENV DOTNET_SDK_VERSION 3.0.100-preview-009734

RUN curl -SL --output dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_SDK_VERSION/dotnet-sdk-$DOTNET_SDK_VERSION-linux-x64.tar.gz \
&& dotnet_sha512='ac3d1a5509706af139b953a6ba0e849516d88fc223a9aa8d581e6e0778210c0c61270652705ccad78dd962149d48102f674e51f7edb4025ab5400eeda5c68ba1' \
&& dotnet_sha512='31c4b459e10a6998bb2b408f5f0f1e5e5b40060b093753e7647f877c3ce9dd9915eb94488d7ed3808acb7c103995e8a6158f8c297d263032a516db253131dca0' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -zxf dotnet.tar.gz -C /usr/share/dotnet \
Expand Down
6 changes: 3 additions & 3 deletions 3.0/sdk/bionic/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core SDK
ENV DOTNET_SDK_VERSION 3.0.100-alpha1-009697
ENV DOTNET_SDK_VERSION 3.0.100-preview-009734

RUN curl -SL --output dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_SDK_VERSION/dotnet-sdk-$DOTNET_SDK_VERSION-linux-arm.tar.gz \
&& dotnet_sha512='5a7a7e8c7953d83c67759c0b3e2b1cab41e062c36765cbff5d849b2e84a7e000636ea99f2daad1146aaf098f96407788ae898d669e75df43cc1ecaae74fde79f' \
&& dotnet_sha512='25fa26cc880f45e132203e3a101a0b9621f6e1cf3fbb13bc25b5a0e0c15da99a281ba57b077ac26d496eea2037bc6f173ccd972f70d99ca6c98b640a9f58b749' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& 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 \
# Add NuGet cache (ARM SDK doesn't include it)
&& curl -SL --output /usr/share/dotnet/sdk/$DOTNET_SDK_VERSION/nuGetPackagesArchive.lzma https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_SDK_VERSION/nuGetPackagesArchive.lzma \
&& lzma_sha512='197b7f772a4bf5da9fc5839450921cf54d55375d2c8c0eb992f39ca2165d62673574e5d27f2ff5ba19a6110403c950e79b32460849cc2e05ff12a3018623fc2d' \
&& lzma_sha512='d962b30b9c7a92a6781cbc8d715d0a16a08db2f2e4135e8badfde632305a58d13467d45896a114fd668d0441cd1ca6cd97ca026ac3f3b09f4fdf1f1736628fd0' \
&& echo "$lzma_sha512 /usr/share/dotnet/sdk/$DOTNET_SDK_VERSION/nuGetPackagesArchive.lzma" | sha512sum -c -

# Configure Kestrel web server to bind to port 80 when present
Expand Down
Loading

0 comments on commit 8246e49

Please sign in to comment.