'vc_redist.x64未安装在microsoft / nanoserver映像中

时间:2019-01-31 05:37:22

标签: docker 64-bit dockerfile vcredist nano-server

我想使用microsoft / nanoserver作为我的需求的基本映像,并想在其中安装“ vc_redist.x64”软件包,但由于其返回如下所示的错误而无法安装:

enter image description here

这是我的Dockerfile:

FROM microsoft/nanoserver
MAINTAINER <org name>
ADD . /
CMD ["powershell", "c:/scripts/start.ps1"]
ADD https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe /vc_redist.x64.exe
RUN C:\vc_redist.x64.exe /quiet /install

但是,如果我使用“ microsoft / windowsservercore”,则基本映像大小会迅速增加,达到12 GB以上。具有较大的基本图像尺寸不符合我的要求。

有什么方法可以在具有相关性的'microsoft / nanoserver'中安装'vc_redist.x64'吗?

非常感谢您的帮助。

0 个答案:

没有答案