Namespace
library
Image / Tag
openjdk:12-ea-26-windowsservercore-1709
Content Digest
sha256:a625f44c4feb60b3b3d03a563f3593c3c244ac9bee8d94e1034b4f27b0766450
Details
Created

2019-01-08 10:32:53 UTC

Size

3.13 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-12

JAVA_SHA256

2c83e4ee18e2f6ca7f1062028fa46e8527cb070539bac483a44b00524e6e9e1f

JAVA_URL

https://download.java.net/java/early_access/jdk12/26/GPL/openjdk-12-ea+26_windows-x64_bin.zip

JAVA_VERSION

12-ea+26


Layers

[#000] sha256:5847a47b8593f7c39aa5e3db09e50b76d42aa8898c0440c70cc9c69747d4c479 - 67.73% (2.12 GB)

[#001] sha256:10167262a01401a5b7cd880ca2abdb5a43d0cdb288b23e2bbda0cd16760064e7 - 26.14% (837 MB)

[#002] sha256:7c1b47cffe80520ef16d931d598cdadd371f9cb1e4ca9304d9c7532bb19c9721 - 0.0% (1.18 KB)

[#003] sha256:fac183665c50ece051ad7a47123f27410be49e5bb005c5050f18e99698c80647 - 0.14% (4.57 MB)

[#004] sha256:d988c2826c62b02dfa1ff3c128c7c7481516786e692a22db5e979090c66e74ed - 0.0% (1.17 KB)

[#005] sha256:9aad7d333b6d635d4975462cf92253c14682020b19f5eb47a810efc1847fd843 - 0.14% (4.54 MB)

[#006] sha256:ef3cf9f1e66127553d4e8b556e4a2e764298cd4643f05a2020b46b31d839392b - 0.0% (1.17 KB)

[#007] sha256:27d59418f33e70f2a37cd91522a258fce9ebe3cf7adcb2027a37c76188a54b13 - 0.0% (1.17 KB)

[#008] sha256:3b919ca89f61236248765d3b5900e89383e41b05e56a40c5c8c85f6a11883d7b - 0.0% (1.18 KB)

[#009] sha256:31a885d4bce2291af5f036bb7d4721fd3edb87514edf292f1b92ccdf6acf861b - 5.85% (187 MB)

[#010] sha256:c6d68586309830508c08de7850ebee11114ce868ebbd096918cca24a023334fb - 0.0% (1.18 KB)


History
2017-09-29 14:43:28 UTC

Apply image 10.0.16299.15

2018-12-05 22:40:26 UTC

Install update 10.0.16299.846

2018-12-25 17:23:38 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]

2019-01-01 10:28:48 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host 'Enabling TLS 1.2 (https://githubengineering.com/crypto-removal-notice/) ...'; $tls12RegBase = 'HKLM:\\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2'; if (Test-Path $tls12RegBase) { throw ('"{0}" already exists!' -f $tls12RegBase) }; New-Item -Path ('{0}/Client' -f $tls12RegBase) -Force; New-Item -Path ('{0}/Server' -f $tls12RegBase) -Force; New-ItemProperty -Path ('{0}/Client' -f $tls12RegBase) -Name 'DisabledByDefault' -PropertyType DWORD -Value 0 -Force; New-ItemProperty -Path ('{0}/Client' -f $tls12RegBase) -Name 'Enabled' -PropertyType DWORD -Value 1 -Force; New-ItemProperty -Path ('{0}/Server' -f $tls12RegBase) -Name 'DisabledByDefault' -PropertyType DWORD -Value 0 -Force; New-ItemProperty -Path ('{0}/Server' -f $tls12RegBase) -Name 'Enabled' -PropertyType DWORD -Value 1 -Force

2019-01-01 10:28:50 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV JAVA_HOME=C:\openjdk-12

2019-01-01 10:29:37 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('{0}\bin;{1}' -f $env:JAVA_HOME, $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); setx /M PATH $newPath

2019-01-08 10:30:09 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV JAVA_VERSION=12-ea+26

2019-01-08 10:30:10 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV JAVA_URL=https://download.java.net/java/early_access/jdk12/26/GPL/openjdk-12-ea+26_windows-x64_bin.zip

2019-01-08 10:30:11 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV JAVA_SHA256=2c83e4ee18e2f6ca7f1062028fa46e8527cb070539bac483a44b00524e6e9e1f

2019-01-08 10:32:50 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading {0} ...' -f $env:JAVA_URL); Invoke-WebRequest -Uri $env:JAVA_URL -OutFile 'openjdk.zip'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:JAVA_SHA256); if ((Get-FileHash openjdk.zip -Algorithm sha256).Hash -ne $env:JAVA_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; New-Item -ItemType Directory -Path C:\temp | Out-Null; Expand-Archive openjdk.zip -DestinationPath C:\temp; Move-Item -Path C:\temp\* -Destination $env:JAVA_HOME; Remove-Item C:\temp; Write-Host 'Verifying install ...'; Write-Host ' java --version'; java --version; Write-Host ' javac --version'; javac --version; Write-Host 'Removing ...'; Remove-Item openjdk.zip -Force; Write-Host 'Complete.'

2019-01-08 10:32:53 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) CMD ["jshell"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete