Namespace
library
Image / Tag
openjdk:25-ea-31-windowsservercore-ltsc2022
Content Digest
sha256:5f0f705eba453b5bcce1e9c503dc2dbd1c388e95152f3f4af5cf10e8fed62ac0
Details
Created

2025-07-14 20:54:03 UTC

Size

2.33 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-25

JAVA_SHA256

836aae7dfaa07d9f7657146c6f5348253d7ed98a7754cc5148ea306de54d8eb8

JAVA_URL

https://download.java.net/java/early_access/jdk25/31/GPL/openjdk-25-ea+31_windows-x64_bin.zip

JAVA_VERSION

25-ea+31


Layers

[#000] sha256:2534953f34d35976fc44cd67bfdd39fdcd9e2eaae57ada0be53d5fb936cd3a0b - 58.48% (1.36 GB)

[#001] sha256:b829944a73d1d8ad37eaa13c64bf9189b6895cc5b45b79bb3563fa325d94b6a7 - 32.73% (780 MB)

[#002] sha256:43a86ed808cf3481fb5887768f6cc08ab3fd3b630871ca64c7ee104b16476865 - 0.0% (1.25 KB)

[#003] sha256:99a08c0df9d02ac3f632ec12f323c81635043b7aa3ac1da95d52e9770d73dfee - 0.01% (350 KB)

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

[#005] sha256:471371ba4c33e4c8c009a95a3edbfa849f40a99f9b6ea80c7ce79b9b065b67fa - 0.01% (338 KB)

[#006] sha256:1dc768737fd22af7ebf221df29dc568273c81a4711c4edfcf3a22788a619dc22 - 0.0% (1.32 KB)

[#007] sha256:2557ff8bf3c6a2e5442bd900878a7fc067e60502964a28bf453f9e0145af0773 - 0.0% (1.25 KB)

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

[#009] sha256:1a618c8480feb2b6a6f93e7757504727838aad66c45a76e27f4569141db27593 - 8.76% (209 MB)

[#010] sha256:cb6f135c2666c1c05a6210fefc4002209c90db3db4cfa289386c834ce9c05ae8 - 0.0% (1.25 KB)


History
2024-09-06 00:01:38 UTC

Apply image 10.0.20348.2700

2025-07-05 05:31:06 UTC

Install update 10.0.20348.3932

2025-07-14 20:53:09 UTC

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

2025-07-14 20:53:26 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-07-14 20:53:27 UTC

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

2025-07-14 20:53:34 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-07-14 20:53:35 UTC

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

2025-07-14 20:53:37 UTC

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

2025-07-14 20:53:38 UTC

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

2025-07-14 20:54:01 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-07-14 20:54:03 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