Namespace
library
Image / Tag
openjdk:26-ea-16-windowsservercore-ltsc2025
Content Digest
sha256:a3ed7e66d3bba791dabd546aac8fd2e2ba5bbfd47b9132b83c0704defb2a9f05
Details
Created

2025-09-22 22:15:41 UTC

Size

3.53 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-26

JAVA_SHA256

f867e655606913a0bda0dd383b0d783722ba5b64b9fa63a7a684afb3ed9c5e0c

JAVA_URL

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

JAVA_VERSION

26-ea+16


Layers

[#000] sha256:1317fe15185685e9cd27f7542cd96f4847343401288a8b6798273a4ac60844eb - 58.43% (2.06 GB)

[#001] sha256:2e9750fac680d8e6b6c2e0a6f7718b1ccb76f68a6ebd9f9da4c5e470458c7e72 - 35.77% (1.26 GB)

[#002] sha256:74b8b8b5a83a54167547465bd828d627063f249c2a0208a38b6634318bdd8b86 - 0.0% (1.3 KB)

[#003] sha256:b304f9af9491b27084d8327d8760ca7ec01fb168caeeb21a7df8c8e493ccf094 - 0.01% (380 KB)

[#004] sha256:c08736d1d309df8187486c86b75207bbaa18f813e3e82395c5b0d5cdd0067f08 - 0.0% (1.29 KB)

[#005] sha256:b0305f5a163efcca170f2574545037761393b86d2b4e072a6aa1e22e12fe53c7 - 0.01% (355 KB)

[#006] sha256:5933456860f13654a6ea03cbcc40c26c6356c16e22a58b150200336bd926d55e - 0.0% (1.3 KB)

[#007] sha256:217a93bf136fde55d5e45dbab9930df5d7d21bf34d317c5b7e8a5931c9995c20 - 0.0% (1.29 KB)

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

[#009] sha256:b8f312eda5a61cb90744eaa96b1ec382764385f35f7da3ecda5945c107898559 - 5.78% (209 MB)

[#010] sha256:102f5f05c526d43c45fa859790128af275bbfd027a038398652a44563a59c593 - 0.0% (1.29 KB)


History
2024-12-08 22:41:37 UTC

Apply image 10.0.26100.2605

2025-09-06 02:36:14 UTC

Install update 10.0.26100.6584

2025-09-22 22:14:17 UTC

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

2025-09-22 22:15:04 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-09-22 22:15:05 UTC

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

2025-09-22 22:15:10 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-09-22 22:15:11 UTC

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

2025-09-22 22:15:12 UTC

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

2025-09-22 22:15:13 UTC

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

2025-09-22 22:15: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-09-22 22:15: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