如何将特定的KB更新安装到Windows Server 2016 Docker容器

时间:2019-12-17 16:09:49

标签: windows containers windows-server windows-server-2016 windows-container

我有一个Windows Server 2016 Docker容器,我想对其应用a specific KB update。我想知道如何以编程方式进行操作吗?

1 个答案:

答案 0 :(得分:0)

您的Dockerfile可能如下所示:

FROM microsoft/windowsservercore:ltsc2016
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

RUN Invoke-WebRequest "KB_URL" -OutFile update.exe -UseBasicParsing ; \
Start-Process -FilePath 'update.exe' -ArgumentList '--quiet', '--norestart' -Wait ; \
Remove-Item .\update.exe