Namespace
library
Image / Tag
openjdk:27-ea-24-jdk-windowsservercore-ltsc2022
Content Digest
sha256:3790ddeaf980b3bba51bab0232e89d38095029e0fb56292c5cd3ccf2ce991142
Details
Created

2026-06-02 07:26:54 UTC

Size

2.19 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-27

JAVA_SHA256

5bbf96e8f91e2c80680961ba7cc2ddb7112131f6fa000d2472ab2ea6c99a06f7

JAVA_URL

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

JAVA_VERSION

27-ea+24


Layers

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

[#001] sha256:857865ad3eca4da109d969134a9cab7225d9de49597914ae325d43661900f513 - 26.99% (604 MB)

[#002] sha256:64818880469c46e82ad7a13b32c2ce7ca26a75a57f681c722c786d77ae355989 - 0.0% (1.3 KB)

[#003] sha256:f53d4dc39f0640e55c3246822ffcb42aafcc08ad3a3eb7629646b3bd522d73fe - 0.02% (485 KB)

[#004] sha256:144ebb81ce7ea3e28ce5b655bc8f39163f288ae22b1141bd8ae67d3c667b981d - 0.0% (1.26 KB)

[#005] sha256:9c7e3f786aa934c6e5c7de54c20ee4ec0ea0e9b26e7879f69c4d45154f3f2564 - 0.01% (300 KB)

[#006] sha256:b661042879ba25b28496c7bd43a136631ccf4ac8c0229877c3927199465c4ec1 - 0.0% (1.29 KB)

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

[#008] sha256:8f8a72306f096bdad2e5f21cdb529f265a94f9f1fdd78b0ab5e0fba81941c330 - 0.0% (1.27 KB)

[#009] sha256:253fe32c239c42008c8466a0b99de8b9a51b8e76427658d9e8fd5bfd59f76dd0 - 9.52% (213 MB)

[#010] sha256:2e3981e2a59ead14b875308e79ce71201777cdf7a971f454ef5fede776a77129 - 0.0% (1.26 KB)


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

Apply image 10.0.20348.4294

2026-05-07 03:49:54 UTC

Install update 10.0.20348.5139

2026-06-02 07:23:27 UTC

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

2026-06-02 07:24:39 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-06-02 07:24:39 UTC

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

2026-06-02 07:24:48 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-06-02 07:24:48 UTC

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

2026-06-02 07:24:49 UTC

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

2026-06-02 07:24:51 UTC

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

2026-06-02 07:26:52 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-06-02 07:26:54 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