Merge pull request #24 from yujayee/addrs4dockerfile

Add 4.7.2 rs4 Dockerfile
This commit is contained in:
Jiayi Yu 2018-05-10 11:57:07 -07:00 коммит произвёл GitHub
Родитель 9a0e0f468c 2529cc791c
Коммит b54495bf10
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 17 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1,12 @@
FROM microsoft/aspnet:4.7.2-windowsservercore-1803
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
# Install Windows components required for WCF service hosted on IIS
RUN Add-WindowsFeature NET-WCF-TCP-Activation45; \
Add-WindowsFeature NET-WCF-HTTP-Activation45; \
Add-WindowsFeature Web-WebSockets
# Enable net.tcp protocol for default web site on IIS
RUN windows\system32\inetsrv\appcmd.exe set app 'Default Web Site/' /enabledProtocols:"http,net.tcp"
EXPOSE 808

Просмотреть файл

@ -1,4 +1,8 @@
# Supported Windows Server 2016 Version 1709 (Fall Creators Update) amd64 tags
# Supported Windows Server 2016 Version 1803 amd64 tags
* 4.7.2-windowsservercore-1803, 4.7.2, latest ([4.7.2-windowsservercore-1803/runtime/Dockerfile](https://github.com/Microsoft/wcf-docker/blob/master/4.7.2-windowsservercore-1803/runtime/Dockerfile))
# Supported Windows Server 2016 Version 1709 amd64 tags
* 4.7.2-windowsservercore-1709, 4.7.2, latest ([4.7.2-windowsservercore-1709/runtime/Dockerfile](https://github.com/Microsoft/wcf-docker/blob/master/4.7.2-windowsservercore-1709/runtime/Dockerfile))
* 4.7.1-windowsservercore-1709, 4.7.1 ([4.7.1-windowsservercore-1709/runtime/Dockerfile](https://github.com/Microsoft/wcf-docker/blob/master/4.7.1-windowsservercore-1709/runtime/Dockerfile))