Skip to content

Commit

Permalink
Updates for July patch Tuesday (#1212)
Browse files Browse the repository at this point in the history
  • Loading branch information
mthalman committed Jul 9, 2019
1 parent a94b5b5 commit d884eaf
Show file tree
Hide file tree
Showing 63 changed files with 189 additions and 189 deletions.
4 changes: 2 additions & 2 deletions 2.1/aspnet/alpine3.7/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ ARG REPO=mcr.microsoft.com/dotnet/core/runtime-deps
FROM $REPO:2.1-alpine3.7

# Install ASP.NET Core
ENV ASPNETCORE_VERSION 2.1.11
ENV ASPNETCORE_VERSION 2.1.12

RUN apk add --no-cache --virtual .build-deps \
openssl \
&& 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='4d432655f315702897f74fb96acd71c7bcd168f5dc287823a3731deec287853d107c902b1691fb74f6b2d14f24ed26ce0205dfc294dcd9e5149f8e5941edf3c6' \
&& aspnetcore_sha512='d4869b50f8b07b3371aeec7a89965c9ddf6870123a165952ceb35c150cbc3b8a261ec1c10d3b75159828a3ba684e829591d066fb75a6a41ae68774d282161e71' \
&& 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 2.1/aspnet/alpine3.9/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ ARG REPO=mcr.microsoft.com/dotnet/core/runtime-deps
FROM $REPO:2.1-alpine3.9

# Install ASP.NET Core
ENV ASPNETCORE_VERSION 2.1.11
ENV ASPNETCORE_VERSION 2.1.12

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='4d432655f315702897f74fb96acd71c7bcd168f5dc287823a3731deec287853d107c902b1691fb74f6b2d14f24ed26ce0205dfc294dcd9e5149f8e5941edf3c6' \
&& aspnetcore_sha512='d4869b50f8b07b3371aeec7a89965c9ddf6870123a165952ceb35c150cbc3b8a261ec1c10d3b75159828a3ba684e829591d066fb75a6a41ae68774d282161e71' \
&& 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 2.1/aspnet/bionic/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install ASP.NET Core
ENV ASPNETCORE_VERSION 2.1.11
ENV ASPNETCORE_VERSION 2.1.12

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='1fd17be80e9c4e6f2c70dc234079d535d8218abce0d34bcc6621a38ae48143db11e8e9ac1dd8af3bf3d47269733d82c04bcfd081566dce0da27cc4dd659a7ac6' \
&& aspnetcore_sha512='07ea922c59cd067a6195d4b8dcd1d0460033b4fc621c2cb85f1cded18e03dd46fb091398d9a21377b81a6b28705c336e85b74cfb7de986462d007703c12f539a' \
&& 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 2.1/aspnet/bionic/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install ASP.NET Core
ENV ASPNETCORE_VERSION 2.1.11
ENV ASPNETCORE_VERSION 2.1.12

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='5f4b016947e5706b6ed7a5bb9f767f1f966cac2267815c3f4e16e1623888b6731122d3779f46556038e6951e72c48b0888a9385c103d2ff6147efdff0d148064' \
&& aspnetcore_sha512='09b068d5dc9cbb20b69c8ed4355eadbbfa1bf39475a66cb1da4e9a505dee78a612a2b848eaf8aafc9d1b8d213410f2ef90464c53f87f68f528ef82bbcc4b0ccb' \
&& 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 2.1/aspnet/nanoserver-1803/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ FROM mcr.microsoft.com/windows/servercore:1803 AS installer
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Install ASP.NET Core Runtime
ENV ASPNETCORE_VERSION 2.1.11
ENV ASPNETCORE_VERSION 2.1.12

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 = 'd7b67ba095a862635a27296f0abef664c19a3c9640e041e352b67a002b0ed98de65f97e57c777bcc5b0cc752020fd9afa2c74b8fbcd1d45458faaff344eaf7c2'; `
$aspnetcore_sha512 = '168da5f714611e73faac29cda8cdf183af2cc9e4a703943a435c385c36f55bd9bb15a1ca75c9bea69eade8c9031f828b3d767a4df0a11ac7e269aaa6ed30ca2b'; `
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 2.1/aspnet/nanoserver-1809/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ FROM mcr.microsoft.com/windows/servercore:1809 AS installer
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Install ASP.NET Core Runtime
ENV ASPNETCORE_VERSION 2.1.11
ENV ASPNETCORE_VERSION 2.1.12

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 = 'd7b67ba095a862635a27296f0abef664c19a3c9640e041e352b67a002b0ed98de65f97e57c777bcc5b0cc752020fd9afa2c74b8fbcd1d45458faaff344eaf7c2'; `
$aspnetcore_sha512 = '168da5f714611e73faac29cda8cdf183af2cc9e4a703943a435c385c36f55bd9bb15a1ca75c9bea69eade8c9031f828b3d767a4df0a11ac7e269aaa6ed30ca2b'; `
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 2.1/aspnet/nanoserver-1903/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ FROM mcr.microsoft.com/windows/servercore:1903 AS installer
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Install ASP.NET Core Runtime
ENV ASPNETCORE_VERSION 2.1.11
ENV ASPNETCORE_VERSION 2.1.12

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 = 'd7b67ba095a862635a27296f0abef664c19a3c9640e041e352b67a002b0ed98de65f97e57c777bcc5b0cc752020fd9afa2c74b8fbcd1d45458faaff344eaf7c2'; `
$aspnetcore_sha512 = '168da5f714611e73faac29cda8cdf183af2cc9e4a703943a435c385c36f55bd9bb15a1ca75c9bea69eade8c9031f828b3d767a4df0a11ac7e269aaa6ed30ca2b'; `
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 2.1/aspnet/stretch-slim/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install ASP.NET Core
ENV ASPNETCORE_VERSION 2.1.11
ENV ASPNETCORE_VERSION 2.1.12

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='1fd17be80e9c4e6f2c70dc234079d535d8218abce0d34bcc6621a38ae48143db11e8e9ac1dd8af3bf3d47269733d82c04bcfd081566dce0da27cc4dd659a7ac6' \
&& aspnetcore_sha512='07ea922c59cd067a6195d4b8dcd1d0460033b4fc621c2cb85f1cded18e03dd46fb091398d9a21377b81a6b28705c336e85b74cfb7de986462d007703c12f539a' \
&& 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 2.1/aspnet/stretch-slim/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install ASP.NET Core
ENV ASPNETCORE_VERSION 2.1.11
ENV ASPNETCORE_VERSION 2.1.12

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='5f4b016947e5706b6ed7a5bb9f767f1f966cac2267815c3f4e16e1623888b6731122d3779f46556038e6951e72c48b0888a9385c103d2ff6147efdff0d148064' \
&& aspnetcore_sha512='09b068d5dc9cbb20b69c8ed4355eadbbfa1bf39475a66cb1da4e9a505dee78a612a2b848eaf8aafc9d1b8d213410f2ef90464c53f87f68f528ef82bbcc4b0ccb' \
&& 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 2.1/runtime/alpine3.7/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ ARG REPO=mcr.microsoft.com/dotnet/core/runtime-deps
FROM $REPO:2.1-alpine3.7

# Install .NET Core
ENV DOTNET_VERSION 2.1.11
ENV DOTNET_VERSION 2.1.12

RUN apk add --no-cache --virtual .build-deps \
openssl \
&& 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='1eec1ca48827bdd2548ade5e8fad2cfabd806d59a44dc6505b7bbab8dde27ecbdf46238a6245300809eb2a560e6777691fa21e85b38874c8235e4face9580441' \
&& dotnet_sha512='e9361c78d699f67dfc2b12e87b6b004b67d835f94a1301e6ede3007c9a8904bbdec882967dfb40b9a66d10711649129a90c907825bea7a846e85d6d1da8f7bc8' \
&& 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 2.1/runtime/alpine3.9/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ ARG REPO=mcr.microsoft.com/dotnet/core/runtime-deps
FROM $REPO:2.1-alpine3.9

# Install .NET Core
ENV DOTNET_VERSION 2.1.11
ENV DOTNET_VERSION 2.1.12

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='1eec1ca48827bdd2548ade5e8fad2cfabd806d59a44dc6505b7bbab8dde27ecbdf46238a6245300809eb2a560e6777691fa21e85b38874c8235e4face9580441' \
&& dotnet_sha512='e9361c78d699f67dfc2b12e87b6b004b67d835f94a1301e6ede3007c9a8904bbdec882967dfb40b9a66d10711649129a90c907825bea7a846e85d6d1da8f7bc8' \
&& 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 2.1/runtime/bionic/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV DOTNET_VERSION 2.1.11
ENV DOTNET_VERSION 2.1.12

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='bdfe060a98e0170a633f6fa0bb12f3eacfaaf8b719d596ccd83f9d42ba0c835e4e313dd8abb82970ae655528f57a0871aab6c1aae3e6916862599d4214be906b' \
&& dotnet_sha512='9b6d07e180ba1d19f0b00263af9dcf3147b0869564ef82ec20584b25d801a2d5c353f0f2bd7bd7e92e75ceb4e4bca35ec3eade73a2b25a0306d4d95ef5071a08' \
&& 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 2.1/runtime/bionic/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV DOTNET_VERSION 2.1.11
ENV DOTNET_VERSION 2.1.12

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='4ec03929ea9995216ecfd2569bec204aa69d55cb483267efb800be6cd080920b1559b60d2408489ad8fc5f436d3dcfdcd085a5b59f6084aa8aaf2ccc8157a910' \
&& dotnet_sha512='da041cb2afa557e70d00039fddacafe48df28b8da9c06f790cc841ecaba496f00880ef3349731860835007fa12f0aef7d50d5eb200297af5e37f4503c62aceca' \
&& 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 2.1/runtime/nanoserver-1803/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ FROM mcr.microsoft.com/windows/servercore:1803 AS installer
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Retrieve .NET Core Runtime
ENV DOTNET_VERSION 2.1.11
ENV DOTNET_VERSION 2.1.12

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 = 'b5118c4a3532daba32aeab686ec3f21779ad28cfb994446ac02aa1902faddb8b67d383d2b516d4b02538a653e03bd97c4b817c4ffde6b156ed6bcb8d2e7dfffb'; `
$dotnet_sha512 = 'ce3f8abd92997645035b7655e9ae61e2023ffc9848b250945e140bfd05c26beed35982e8f5a5d263bc576112c6f4d3e82b0bea45bd07d5331f290c1d8d2eb9ce'; `
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 2.1/runtime/nanoserver-1809/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ FROM mcr.microsoft.com/windows/servercore:1809 AS installer
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Retrieve .NET Core Runtime
ENV DOTNET_VERSION 2.1.11
ENV DOTNET_VERSION 2.1.12

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 = 'b5118c4a3532daba32aeab686ec3f21779ad28cfb994446ac02aa1902faddb8b67d383d2b516d4b02538a653e03bd97c4b817c4ffde6b156ed6bcb8d2e7dfffb'; `
$dotnet_sha512 = 'ce3f8abd92997645035b7655e9ae61e2023ffc9848b250945e140bfd05c26beed35982e8f5a5d263bc576112c6f4d3e82b0bea45bd07d5331f290c1d8d2eb9ce'; `
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 2.1/runtime/nanoserver-1903/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ FROM mcr.microsoft.com/windows/servercore:1903 AS installer
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

# Retrieve .NET Core Runtime
ENV DOTNET_VERSION 2.1.11
ENV DOTNET_VERSION 2.1.12

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 = 'b5118c4a3532daba32aeab686ec3f21779ad28cfb994446ac02aa1902faddb8b67d383d2b516d4b02538a653e03bd97c4b817c4ffde6b156ed6bcb8d2e7dfffb'; `
$dotnet_sha512 = 'ce3f8abd92997645035b7655e9ae61e2023ffc9848b250945e140bfd05c26beed35982e8f5a5d263bc576112c6f4d3e82b0bea45bd07d5331f290c1d8d2eb9ce'; `
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 2.1/runtime/stretch-slim/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV DOTNET_VERSION 2.1.11
ENV DOTNET_VERSION 2.1.12

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='bdfe060a98e0170a633f6fa0bb12f3eacfaaf8b719d596ccd83f9d42ba0c835e4e313dd8abb82970ae655528f57a0871aab6c1aae3e6916862599d4214be906b' \
&& dotnet_sha512='9b6d07e180ba1d19f0b00263af9dcf3147b0869564ef82ec20584b25d801a2d5c353f0f2bd7bd7e92e75ceb4e4bca35ec3eade73a2b25a0306d4d95ef5071a08' \
&& 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 2.1/runtime/stretch-slim/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Install .NET Core
ENV DOTNET_VERSION 2.1.11
ENV DOTNET_VERSION 2.1.12

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='4ec03929ea9995216ecfd2569bec204aa69d55cb483267efb800be6cd080920b1559b60d2408489ad8fc5f436d3dcfdcd085a5b59f6084aa8aaf2ccc8157a910' \
&& dotnet_sha512='da041cb2afa557e70d00039fddacafe48df28b8da9c06f790cc841ecaba496f00880ef3349731860835007fa12f0aef7d50d5eb200297af5e37f4503c62aceca' \
&& 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 2.1/sdk/alpine3.7/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false \
LANG=en_US.UTF-8

# Install .NET Core SDK
ENV DOTNET_SDK_VERSION 2.1.700
ENV DOTNET_SDK_VERSION 2.1.701

RUN apk add --no-cache --virtual .build-deps \
openssl \
&& 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='414a42726476bf0429889ee2d4d0c0ac7e84464a5749c367715bc431b4aa3fbcddea2ccc3020ecb1bd0d08ef8db520940c7de3fb2bd8aeb704f66a59bd0e4461' \
&& dotnet_sha512='4897c1e7226ce1df13394096059a106529e080089ecc84913ee7f0173896ec71a6cfbdc6be0b407edfa4d70d39f1edc6fac85edc11d536527d4bd45cad5e8837' \
&& 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 2.1/sdk/alpine3.9/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false \
LANG=en_US.UTF-8

# Install .NET Core SDK
ENV DOTNET_SDK_VERSION 2.1.700
ENV DOTNET_SDK_VERSION 2.1.701

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='414a42726476bf0429889ee2d4d0c0ac7e84464a5749c367715bc431b4aa3fbcddea2ccc3020ecb1bd0d08ef8db520940c7de3fb2bd8aeb704f66a59bd0e4461' \
&& dotnet_sha512='4897c1e7226ce1df13394096059a106529e080089ecc84913ee7f0173896ec71a6cfbdc6be0b407edfa4d70d39f1edc6fac85edc11d536527d4bd45cad5e8837' \
&& 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 2.1/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 2.1.700
ENV DOTNET_SDK_VERSION 2.1.701

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='44258b4fb59927d9977900f0724eeb82248a3cc46ef3067088f8f78eb092c09da88bba9b7a488f1549a240e0dd3fea465ff1ffa6cdabb543b6bb536a12a549d3' \
&& dotnet_sha512='c915bdbf493cd5caf60e051b3be2c587d4cc28fec426ab8e9ac1bbab7f620273cf2b76f4aca10da9807cde1b7141a0a8d07ba35c08d0c70006767589ceec04a4' \
&& 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 2.1/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 2.1.700
ENV DOTNET_SDK_VERSION 2.1.701

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='dc7f7161b584dd29346d0d306497e35a1d9b2a28c382810e4270ecb57c64d24383e0b2b8bbc6e64705fe9d592df48a26e0380e544d708daa66d12aad354fde31' \
&& dotnet_sha512='eb4f097965ada20d7deb707bc60832ecb80bca62fd0c07bd4777fffb24bcb27e6cb62fe8c8aacc4187775e5755975fb129e5debdff069f504ca4137ed19adddd' \
&& 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='3f9b8112280c7b45d573a4baa4b46e2bd265297780b0613398114dfdf3961657c904ac76bc038188a0283eecff84327ba64bc2a60bcfde37f5950404a66cdf08' \
&& lzma_sha512='bcbc01bda5f606ba25fc5635d4e72dd56f853b140e1b4bf4b0e577ad9b9f8c1da7442c00f08f1d6d101c8be72a10356268e88a2c533e7ab12fb978c12b3f8a9b' \
&& echo "$lzma_sha512 /usr/share/dotnet/sdk/$DOTNET_SDK_VERSION/nuGetPackagesArchive.lzma" | sha512sum -c -

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

0 comments on commit d884eaf

Please sign in to comment.