Namespace
library
Image / Tag
openjdk:25-ea-34-windowsservercore-ltsc2025
Content Digest
sha256:c85fff06ba93b9bb5adea22c1b1295579f90c6a445c03d2f6d9bfac4b864fe6b
Details
Created

2025-08-04 21:01:09 UTC

Size

3.46 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-25

JAVA_SHA256

59e8a607698d978c77ab04b5a7748f85831b5776858eac51fea4c4c165a32fd0

JAVA_URL

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

JAVA_VERSION

25-ea+34


Layers

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

[#001] sha256:49ebc78effce2335b8fe04c34f5f1f3e33e513d5a7831fa81718af6737b3d654 - 34.38% (1.19 GB)

[#002] sha256:516f5e807f6c6cf84632547678db408d303dfe9202b782786468160f192ab03a - 0.0% (1.33 KB)

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

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

[#005] sha256:72fa32c295367309a8f9d0f77bdea79878e420f7c2968150ab40d2c049248e56 - 0.01% (362 KB)

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

[#007] sha256:6dbb08f8dd3bf16656c5dfe6f6962504a407ad11140f594a737636135697b130 - 0.0% (1.29 KB)

[#008] sha256:85d7d9e16b103be70d3ee72cfe8090c450779cbca9caed56c4d5b3f1dbc416a1 - 0.0% (1.3 KB)

[#009] sha256:fd04c6379d0c3d33dc064b27b39914a56225240e075731a4d364a751e7a2e1a5 - 5.9% (209 MB)

[#010] sha256:e16b2023af038fe1eea6d36eb530c04d655a77b2ea05f0a3fdc355775e5fced9 - 0.0% (1.3 KB)


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

Apply image 10.0.26100.2605

2025-07-05 18:40:54 UTC

Install update 10.0.26100.4652

2025-08-04 21:00:35 UTC

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

2025-08-04 21:00: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.'

2025-08-04 21:00:43 UTC

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

2025-08-04 21:00: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.'

2025-08-04 21:00:48 UTC

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

2025-08-04 21:00:49 UTC

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

2025-08-04 21:00:49 UTC

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

2025-08-04 21:01:09 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-08-04 21:01:09 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