Namespace
library
Image / Tag
openjdk:13-ea-23-jdk-windowsservercore-ltsc2016
Content Digest
sha256:6ee584b8e7fa3b3701a2c646aa8cd637e59e93782b02d3b1e0631214fadc69b5
Details
Created

2019-06-01 01:22:10 UTC

Size

5.5 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-13

JAVA_SHA256

35ca5f45948fbd5e98126a01605d96f070a338592642a0a4d5cec974a0177531

JAVA_URL

https://download.java.net/java/early_access/jdk13/23/GPL/openjdk-13-ea+23_windows-x64_bin.zip

JAVA_VERSION

13-ea+23


Layers

[#000] sha256:3889bb8d808bbae6fa5a33e07093e65c31371bcf9e4c38c21be6b9af52ad1548 - 68.91% (3.79 GB)

[#001] sha256:953249f92c3ef08a99d71358fd672da16a7dcc44032ff3356502f31ec8a9c0bb - 27.6% (1.52 GB)

[#002] sha256:238abb146382d28000f03a82c40be99cbfac99a1480f9d23f8a6420cafc6b083 - 0.0% (1.18 KB)

[#003] sha256:8da2d9acb15b1491a16d4e5f0a8fd1529c62b2f21b6f42cff507fd300be47976 - 0.09% (4.98 MB)

[#004] sha256:27ea951528d33f80f4e33a9f7a19f1dac91e073328ed296d057bc566ff3c55cb - 0.0% (1.18 KB)

[#005] sha256:aa274753582b784d44730714118e69b557fdd4ac6425dd225397a4a854ba419e - 0.09% (4.95 MB)

[#006] sha256:324be48015ff2f01258929b357c14417d29b49ed29b6e79ae184490a8bd35871 - 0.0% (1.12 KB)

[#007] sha256:43b5875b3a9b092b12dfca91f2b8c8a0dffdd803e70cb39625a5f6e53de5d850 - 0.0% (1.14 KB)

[#008] sha256:e46860781ecdcf2c96aa6a8ffd8e6b8cb1a8b349a0abd8887edbc8ead6a33d71 - 0.0% (1.16 KB)

[#009] sha256:a64156262315f2761960c6712bd65b5069f113e378673edd1da381f472e68406 - 3.32% (187 MB)

[#010] sha256:b7250926911221bea81eae5a2c34f656c010e9d8e6a0e0dafc74509e9df7e331 - 0.0% (1.14 KB)


History
2016-11-22 23:24:34 UTC

Apply image 1607-RTM-amd64

2019-05-18 22:44:29 UTC

Install update ltsc2016-amd64

2019-05-22 12:40:21 UTC

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

2019-05-22 15:01:09 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-05-22 15:01:11 UTC

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

2019-05-22 15:02:15 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-06-01 01:19:46 UTC

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

2019-06-01 01:19:47 UTC

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

2019-06-01 01:19:48 UTC

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

2019-06-01 01:22:08 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-06-01 01:22:10 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