安静地安装到microsoft / nanoserver中


0

我从我的一个Dockerfile [s]中摘录了这个。任何以静默方式安装软件的尝试都将失败。在另一个Dockerfile中,我已经尝试过使用oracle-xe但没有成功。在这个docker文件中,我也尝试过Git for Windows,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

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


JDK是否在没有静默标志的情况下安装?什么是退出代码?
Unfundednut

是的,在主机上安装没有问题,所有其他失败的软件也是如此。
Herve Mutombo
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.