Below is the content of the Dockerfile used to make this image.
FROM microsoft/windowsservercore
RUN powershell (new-object System.Net.WebClient).Downloadfile('http://javadl.oracle.com/webapps/download/AutoDL?BundleId=210185', 'C:\jre-8u91-windows-x64.exe')
RUN powershell start-process -filepath C:\jre-8u91-windows-x64.exe -passthru -wait -argumentlist "/s,INSTALLDIR=c:\Java\jre1.8.0_91,/L,install64.log" RUN del C:\jre-8u91-windows-x64.exe
CMD [ "c:\Java\jre1.8.0_91\bin\java.exe", "-version"]
Content type
Image
Digest
Size
5.2 GB
Last updated
over 8 years ago
docker pull gremlin961/win-java:8u91