我想使用microsoft / nanoserver作为我的需求的基本映像,并想在其中安装“ vc_redist.x64”软件包,但由于其返回如下所示的错误而无法安装:
这是我的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'吗?
非常感谢您的帮助。