Namespace
library
Image / Tag
openjdk:27-ea-32-jdk-windowsservercore-ltsc2025
Content Digest
sha256:7db788a75f3a8c8d1cc09e05f812973367f26633dac45a8f35664ae46e86709c
Details
Created

2026-07-27 22:13:22 UTC

Size

2.4 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-27

JAVA_SHA256

fbe4e05c3bf4aa91e8782ae887d4dcca36195aa7cd9526a65653cd07782f678c

JAVA_URL

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

JAVA_VERSION

27-ea+32


Layers

[#000] sha256:0938cf51b672b81c9804d1d5f0c57031c931f41b279270e84820c63642d6a3bd - 59.05% (1.42 GB)

[#001] sha256:e24b28706e4e5f31fae7935e5a79e6df5d7a2eb3e69c8c19ca723f41f0b45f6f - 32.25% (793 MB)

[#002] sha256:dfa8c7c75e49ce20085e91e62a7abd8f58d251e0738f21d32ec6efe05a066ae7 - 0.0% (1.28 KB)

[#003] sha256:f89277d092b4e3dd6a6f17b6e589b323dd1f51ca42cfd0bf7f8b01f84c8fdd79 - 0.02% (388 KB)

[#004] sha256:92f77036e4416d9d881bd21ed59b95650dc4f82705b226d8aa6bd3bcb209ed71 - 0.0% (1.25 KB)

[#005] sha256:71706400ceca0dc3aa4ae515e5583ec97033564503a5934b8571e47ea59552c8 - 0.01% (376 KB)

[#006] sha256:205439db0a0d2d88c734d3ca77163ed5037f52df66d282272ef38a0c87d48497 - 0.0% (1.23 KB)

[#007] sha256:bf82efb7141fdfcad29c70a96b6d58d91a527be33bc80f44cfd2d27b08abc49d - 0.0% (1.27 KB)

[#008] sha256:3f8f00fcc7386a7b2b681e48cf6cedc102917c94c4a1659edae75f3c3678ab39 - 0.0% (1.26 KB)

[#009] sha256:a3e56b6c2d4805ff6a60901e40156a91cd7d49d1a5e7d1a71eb033a3d7113af6 - 8.67% (213 MB)

[#010] sha256:f5441a9d136b9e99d897fc275feda989792ade08202d307c8d43a83579403d7e - 0.0% (1.27 KB)


History
2026-01-11 09:57:36 UTC

Apply image 10.0.26100.32230

2026-07-11 23:02:35 UTC

Install update 10.0.26100.33158

2026-07-27 22:11:25 UTC

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

2026-07-27 22:12:42 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.'

2026-07-27 22:12:43 UTC

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

2026-07-27 22:12:50 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.'

2026-07-27 22:12:51 UTC

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

2026-07-27 22:12:52 UTC

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

2026-07-27 22:12:53 UTC

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

2026-07-27 22:13:22 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.'

2026-07-27 22:13:22 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