Skip to content

Instantly share code, notes, and snippets.

@alexandrnikitin
Created June 23, 2016 08:49
Show Gist options
  • Save alexandrnikitin/e260c8792f1edff4626f8facff40bec1 to your computer and use it in GitHub Desktop.
Save alexandrnikitin/e260c8792f1edff4626f8facff40bec1 to your computer and use it in GitHub Desktop.
FROM windowsservercore
ADD 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"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment