Namespace
library
Image / Tag
openjdk:25-ea-11-windowsservercore-ltsc2025
Content Digest
sha256:0c844f88a15cb160dd9cd2170ca8acd6304d45ea3b4f10f0de7e6f5de5f60b2d
Details
Created

2025-02-27 18:21:26 UTC

Size

2.82 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-25

JAVA_SHA256

7db003a6e122cc08ddd88b60142284f2461efe69b7007138277f55c2b4cf1d4a

JAVA_URL

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

JAVA_VERSION

25-ea+11


Layers

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

[#001] sha256:39ec821b2720b751c1158ef60a69ee9d879169daea9bb3099c4f6c525fc30ff3 - 19.87% (573 MB)

[#002] sha256:37d282a779eb234a6ba368708fb78c56fc9df01580acb5a4302a6ce659a92098 - 0.0% (1.29 KB)

[#003] sha256:9018f00241c859015c28f1533b98bec878f484f8fed5ba65a7064d4236ed6d78 - 0.01% (392 KB)

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

[#005] sha256:69179387ddc029a29dd794a66b72e67c7e2a4be268b9738807a054d3e5335508 - 0.01% (376 KB)

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

[#007] sha256:d77c2f3ff7b8358ad6a3cc39abc13c8834615d8f536334de7fcbf7659a8e41bc - 0.0% (1.28 KB)

[#008] sha256:81c8aafcfd12716bdbdfc664da7d624fcfe811888a89846302547fc9b7b4c096 - 0.0% (1.29 KB)

[#009] sha256:27c62cb3c7b96579348e44bffc920f4073a747a54d61e65c85097de7f9142a82 - 6.87% (198 MB)

[#010] sha256:7b924f405a740e4db0297cf87192f15b9db6e9059c3f4c6e59d36d2d8af15596 - 0.0% (1.29 KB)


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

Apply image 10.0.26100.2605

2025-02-08 22:54:28 UTC

Install update 10.0.26100.3194

2025-02-27 18:20:49 UTC

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

2025-02-27 18:20:56 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-02-27 18:20:57 UTC

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

2025-02-27 18:21:06 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-02-27 18:21:06 UTC

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

2025-02-27 18:21:07 UTC

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

2025-02-27 18:21:07 UTC

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

2025-02-27 18:21:25 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-02-27 18:21:26 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