Namespace
library
Image / Tag
openjdk:25-ea-19-jdk-windowsservercore-ltsc2025
Content Digest
sha256:9ee09627e4f3b5f368d8b0457d2a7ef1e38b5af29da1b9cb86ff2d98a0533f1d
Details
Created

2025-04-18 18:44:16 UTC

Size

3.36 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-25

JAVA_SHA256

29058ee51e7562ec5fb02d09a78c3540286db223bf48aacf93c4a95ed664fc7a

JAVA_URL

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

JAVA_VERSION

25-ea+19


Layers

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

[#001] sha256:86a55b9bd12cfb5d81d64963683e6d5d0ba9423233c85140eff135128a64f7ee - 32.74% (1.1 GB)

[#002] sha256:e977ce3042fcbf3048a6d6be511f9eedfab5d90562f5fe924d3bc2f9e7264f62 - 0.0% (1.26 KB)

[#003] sha256:f45ecb0bc33fbea75165dc931e49fe1845c2b7b9e473416d4144633686492dca - 0.01% (356 KB)

[#004] sha256:a579206e7890579b5fb3d1cb61fd57ee92bc9a2c2db208ec7b7f2abd8fb7ddd0 - 0.0% (1.29 KB)

[#005] sha256:528c7a13cfe1636d89fcdd05f168afa009a3925b7263767a0e67f352b069f6cb - 0.01% (340 KB)

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

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

[#008] sha256:2092e9c977f882583f739784a2af05a11a3c260b022a05c77175fa265fd408a3 - 0.0% (1.3 KB)

[#009] sha256:8d198f480bfb14f8ed8b2df93229da3c09c0ddf9cf9929e906bc7bafdc7d0fc2 - 5.77% (198 MB)

[#010] sha256:838b7c202c5437acd501e738334562f1f53b2d22a9c6a0eb3a3f8c2c5d39a2d6 - 0.0% (1.28 KB)


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

Apply image 10.0.26100.2605

2025-04-15 10:03:37 UTC

Install update 10.0.26100.3781

2025-04-18 18:43:19 UTC

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

2025-04-18 18:43:30 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-04-18 18:43:33 UTC

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

2025-04-18 18:43:42 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-04-18 18:43:46 UTC

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

2025-04-18 18:43:48 UTC

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

2025-04-18 18:43:49 UTC

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

2025-04-18 18:44:13 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-04-18 18:44:16 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