静默安装到 microsoft/nanoserver

静默安装到 microsoft/nanoserver

我从我的一个 Dockerfile[s] 中摘录了这段内容。任何试图静默安装软件的尝试都会失败。在另一个 Dockerfile 中,我已经尝试使用 oracle-xe,但没有成功。在这个 docker 文件中,我还尝试了适用于 Windows 的 Git、OpenSSH 和 gpg4win,但它们都无法正常工作,并返回非常长的返回代码。

FROM microsoft/nanoserver
ADD assets/jdk-8u161-windows-x64.exe C:\\temp\\install
RUN powershell.exe -Command Start-Process C:\temp\install\jdk-8u161-windows-
x64.exe -ArgumentList '/s' -Wait
# Or
# C:\temp\install\jdk-8u161-windows-x64.exe /s

你能帮我解决这个问题吗?

相关内容