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

2025-07-21 20:32:27 UTC

Size

3.46 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-25

JAVA_SHA256

da2325251fd317e2d1e60816e8161b25524bafefc1dd8599e1c7486a4625cb0f

JAVA_URL

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

JAVA_VERSION

25-ea+32


Layers

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

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

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

[#003] sha256:d6e754f082c4a483fdf2b0a8a68635a22a8177419d5d095c794771fc6f102d04 - 0.01% (393 KB)

[#004] sha256:24b381b3e453df56374d7b2ab8eff251ba26396b3757a06931c23db9df08e4a8 - 0.0% (1.33 KB)

[#005] sha256:f2b1090aa55e5730c018f3dab4f3c60f1ebc95505a74fa40eb2aad69f5bed3da - 0.01% (374 KB)

[#006] sha256:6c746633abf9a02b6151e2e28249bc7f6c805a88bfa2bbbc38bbe42dc65e14e4 - 0.0% (1.26 KB)

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

[#008] sha256:330d9de764a6151049e8b656dabe2725809edbd6a018b464eda959e7512b65b4 - 0.0% (1.28 KB)

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

[#010] sha256:f99d0e6f6874c075503dc6fcf1718c59e1b4b6dbff4c091af4c334492b2d2c97 - 0.0% (1.29 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-07-21 20:31:54 UTC

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

2025-07-21 20:32:01 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-21 20:32:01 UTC

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

2025-07-21 20:32:07 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-21 20:32:07 UTC

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

2025-07-21 20:32:08 UTC

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

2025-07-21 20:32:08 UTC

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

2025-07-21 20:32:26 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-21 20:32:27 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