我的搬运工文件得到了纳米服务器容器,它会自动添加Java的。
# Get nano server
FROM microsoft/nanoserver
# Download file and set in docker container
ADD http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 \
'C:\\java\jre-8u151-windows-x64.exe'
# Silent install and delete install file
RUN powershell Start-Process -filepath C:\java\jre-8u151-windows-x64.exe -ArgumentList '/s,INSTALLDIR=c:\Java\jre1.8.0_151' -Passthru -Wait; \
Remove-Item C:\\java\jre-8u151-windows-x64.exe -Force
CMD powershell
这个过程是正确的,但在纳米服务器不没有表现出任何错误安装任何东西。 然而,随着核心服务器确实安装。
静默安装的结果是:
Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessName
------- ------ ----- ----- ------ -- -- -----------
3 476 1464 596 1 jre-8u151-windows-x64
但是,当我检查其是否安装了dir
命令,我看到以下结果:
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 12/21/2017 11:04 AM Program Files
d----- 7/16/2016 2:09 PM Program Files (x86)
d-r--- 11/3/2017 8:44 PM Users
d----- 12/21/2017 11:05 AM Windows
-a---- 7/24/2017 6:05 PM 65365056 jre-8u151-windows-x64.exe
-a---- 11/20/2016 12:32 PM 1894 License.txt
我怎么能正确地使这个过程的工作或我可以用什么替代?