Skip to content

Instantly share code, notes, and snippets.

@yizhang82
yizhang82 / aspnetcore-2.0-windowsservercore-1709
Last active April 13, 2018 00:35
Asp.NET core runtime environment on Windows Server Core 1709 on .NET Core 2.0.6 runtime
# escape=`
# Installer image
FROM microsoft/windowsservercore:1709 AS installer-env
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
# Retrieve the runtime store
RUN @('2.0.0', '2.0.3', '2.0.5', '2.0.6') | % { `
$downloadUrl = \"https://dist.asp.net/runtimestore/${_}/win-x64/aspnetcore.runtimestore.zip\"; `