Namespace
library
Image / Tag
openjdk:26-ea-27-windowsservercore-ltsc2022
Content Digest
sha256:3971c7ce8ee8a040a23914dff076780617af40b80523a5478b068af7046a3d5f
Details
Created

2025-12-09 20:45:41 UTC

Size

1.87 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-26

JAVA_SHA256

5fc8523fafe0bbe81e010d1bd57b12836c42cdd1f017e4492f67d56bde06f86a

JAVA_URL

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

JAVA_VERSION

26-ea+27


Layers

[#000] sha256:3cc21a1b754848d23f00aa65cb94ec34c9a5dc6028b3aada42039c824738d02f - 74.22% (1.39 GB)

[#001] sha256:1fc19ec18c41e4c8edf1a76eecae2be22e29445f11ee586523f59e36de40aebb - 14.5% (277 MB)

[#002] sha256:4337b0b452250939272a24a7d25392c5f6351fbf9da067a0d397cefbb4266c7a - 0.0% (1.29 KB)

[#003] sha256:afedf6959d8406aa6f61f5d1cb7e75197da86cb668b124864cc94da0f8aac1dd - 0.02% (474 KB)

[#004] sha256:c5647abb177001d198611cfbb4d40b1b1ddf4f9121ab23bc84e3cd2ed7a8075f - 0.0% (1.28 KB)

[#005] sha256:a9ae996b14cd7eae41f2fcd94683248c6d4c07e118061ee818560117bef288cc - 0.02% (327 KB)

[#006] sha256:ae1fdebd185af009de4855f36787b8e36d1942f1ee60048cbb39647045441632 - 0.0% (1.28 KB)

[#007] sha256:7c917a6783420ef66a38dd51d49b6f28d585f8b4b9b494388a3a437670ea36d7 - 0.0% (1.3 KB)

[#008] sha256:bfa4fa654cd2a97826e9bd38dfc0bff0fc25e0b066be62aefaaf1981709864bb - 0.0% (1.29 KB)

[#009] sha256:635c95c1d0ba2c81f9c67aa7e8d8074e8e069a445801d9c87b56f89de3d18991 - 11.24% (215 MB)

[#010] sha256:38e3a88099edb23e44bed68c6359ec743f8a3f31c8754fbf95535e26716b4da8 - 0.0% (1.26 KB)


History
2025-10-09 07:51:18 UTC

Apply image 10.0.20348.4294

2025-12-05 18:19:35 UTC

Install update 10.0.20348.4529

2025-12-09 20:32:45 UTC

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

2025-12-09 20:45: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; Write-Host 'Complete.'

2025-12-09 20:45:09 UTC

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

2025-12-09 20:45:14 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; Write-Host 'Complete.'

2025-12-09 20:45:15 UTC

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

2025-12-09 20:45:16 UTC

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

2025-12-09 20:45:16 UTC

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

2025-12-09 20:45:40 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.'

2025-12-09 20:45:41 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