Namespace
library
Image / Tag
openjdk:16-ea-13-jdk-windowsservercore-ltsc2016
Content Digest
sha256:de48f66d6592a8604188f125762f76474578fa847940ab8679cf773282118c44
Details
Created

2020-08-27 22:18:38 UTC

Size

5.55 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-16

JAVA_SHA256

054db7127dd6aaf511122fb635ed2d0c77aab20ce9cfe6c6c0b0a89910d354bc

JAVA_URL

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

JAVA_VERSION

16-ea+13


Layers

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

[#001] sha256:b2151f69990007e1df0a2a0a68997c72a9ce7546d653d17a482a51cc3323c047 - 28.01% (1.55 GB)

[#002] sha256:32838d9637dc39d4acee78700b0f93d6c8c9d2db755f12c8009c1b51687d3fbd - 0.0% (1.12 KB)

[#003] sha256:138271f8777367b1ff54a3d43137d564baa693e3e0b71305261b35b9720e7779 - 0.17% (9.41 MB)

[#004] sha256:34771dfe42ef423846ebfe01aab83001e3cc7208753079693787f39ae976a049 - 0.0% (1.12 KB)

[#005] sha256:25894be8edb605a7d00928789801b5eaa84815ceb02fd359924f3252fffeae0d - 0.09% (5.1 MB)

[#006] sha256:98fb6b2fd331b1812a8b9fcbd0e7eb8aef12c17242325cd3aa066e538b4fb056 - 0.0% (1.1 KB)

[#007] sha256:12eb4c1d1c3b25aaf8672bc7128490bface0408986c0c9cbff2f1a76a6dcee17 - 0.0% (1.1 KB)

[#008] sha256:ef63a0facbb497f1453bb5a98f15ac80db0ee465b3cd1984d21edaba47eaee60 - 0.0% (1.12 KB)

[#009] sha256:e3dde91683703007fdd80a1c07ed5abe1b2838179c78ca7eac21d8103f8c2a14 - 3.39% (193 MB)

[#010] sha256:4a1f87a3bfdc86b68410abd9c9f8fa40e264841a37781b05bb2c1e94571e4427 - 0.0% (1.17 KB)


History
2016-11-19 17:05:00 UTC

Apply image 1607-RTM-amd64

2020-08-05 13:27:00 UTC

Install update ltsc2016-amd64

2020-08-11 20:31:19 UTC

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

2020-08-12 15:24:16 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

2020-08-12 15:24:17 UTC

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

2020-08-12 15:25:29 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

2020-08-27 22:16:13 UTC

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

2020-08-27 22:16:14 UTC

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

2020-08-27 22:16:14 UTC

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

2020-08-27 22:18:38 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading {0} ...' -f $env:JAVA_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; 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 'Removing ...'; Remove-Item openjdk.zip -Force; Write-Host 'Verifying install ...'; Write-Host ' javac --version'; javac --version; Write-Host ' java --version'; java --version; Write-Host 'Complete.'

2020-08-27 22:18:38 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