├── .gitignore ├── 3.5-windowsservercore-1803 └── runtime │ └── Dockerfile ├── 3.5-windowsservercore-1903 └── runtime │ └── Dockerfile ├── 3.5-windowsservercore-ltsc2016 ├── runtime │ └── Dockerfile └── sample │ └── Dockerfile ├── 3.5-windowsservercore-ltsc2019 └── runtime │ └── Dockerfile ├── 4.6.2-windowsservercore-ltsc2016 ├── runtime │ └── Dockerfile └── sample │ └── Dockerfile ├── 4.7-windowsservercore-ltsc2016 ├── runtime │ └── Dockerfile └── sample │ └── Dockerfile ├── 4.7.1-windowsservercore-ltsc2016 ├── runtime │ └── Dockerfile └── sample │ └── Dockerfile ├── 4.7.2-windowsservercore-1803 └── runtime │ └── Dockerfile ├── 4.7.2-windowsservercore-ltsc2016 └── runtime │ └── Dockerfile ├── 4.7.2-windowsservercore-ltsc2019 └── runtime │ └── Dockerfile ├── 4.8-windowsservercore-1803 └── runtime │ └── Dockerfile ├── 4.8-windowsservercore-1903 └── runtime │ └── Dockerfile ├── 4.8-windowsservercore-ltsc2016 └── runtime │ └── Dockerfile ├── 4.8-windowsservercore-ltsc2019 └── runtime │ └── Dockerfile ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 3.5/source/ -------------------------------------------------------------------------------- /3.5-windowsservercore-1803/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/3.5-windowsservercore-1803/runtime/Dockerfile -------------------------------------------------------------------------------- /3.5-windowsservercore-1903/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/3.5-windowsservercore-1903/runtime/Dockerfile -------------------------------------------------------------------------------- /3.5-windowsservercore-ltsc2016/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/3.5-windowsservercore-ltsc2016/runtime/Dockerfile -------------------------------------------------------------------------------- /3.5-windowsservercore-ltsc2016/sample/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/3.5-windowsservercore-ltsc2016/sample/Dockerfile -------------------------------------------------------------------------------- /3.5-windowsservercore-ltsc2019/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/3.5-windowsservercore-ltsc2019/runtime/Dockerfile -------------------------------------------------------------------------------- /4.6.2-windowsservercore-ltsc2016/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.6.2-windowsservercore-ltsc2016/runtime/Dockerfile -------------------------------------------------------------------------------- /4.6.2-windowsservercore-ltsc2016/sample/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.6.2-windowsservercore-ltsc2016/sample/Dockerfile -------------------------------------------------------------------------------- /4.7-windowsservercore-ltsc2016/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.7-windowsservercore-ltsc2016/runtime/Dockerfile -------------------------------------------------------------------------------- /4.7-windowsservercore-ltsc2016/sample/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.7-windowsservercore-ltsc2016/sample/Dockerfile -------------------------------------------------------------------------------- /4.7.1-windowsservercore-ltsc2016/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.7.1-windowsservercore-ltsc2016/runtime/Dockerfile -------------------------------------------------------------------------------- /4.7.1-windowsservercore-ltsc2016/sample/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.7.1-windowsservercore-ltsc2016/sample/Dockerfile -------------------------------------------------------------------------------- /4.7.2-windowsservercore-1803/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.7.2-windowsservercore-1803/runtime/Dockerfile -------------------------------------------------------------------------------- /4.7.2-windowsservercore-ltsc2016/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.7.2-windowsservercore-ltsc2016/runtime/Dockerfile -------------------------------------------------------------------------------- /4.7.2-windowsservercore-ltsc2019/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.7.2-windowsservercore-ltsc2019/runtime/Dockerfile -------------------------------------------------------------------------------- /4.8-windowsservercore-1803/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.8-windowsservercore-1803/runtime/Dockerfile -------------------------------------------------------------------------------- /4.8-windowsservercore-1903/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.8-windowsservercore-1903/runtime/Dockerfile -------------------------------------------------------------------------------- /4.8-windowsservercore-ltsc2016/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.8-windowsservercore-ltsc2016/runtime/Dockerfile -------------------------------------------------------------------------------- /4.8-windowsservercore-ltsc2019/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/4.8-windowsservercore-ltsc2019/runtime/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aspnet-docker/HEAD/README.md --------------------------------------------------------------------------------