Namespace
library
Image / Tag
openjdk:24-ea-25-jdk-windowsservercore-ltsc2022
Content Digest
sha256:ccf648076d91b4db103c380ea728931989ebca03fb668d6f584631acc2576fb6
Details
Created

2024-11-25 23:26:10 UTC

Size

2.29 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-24

JAVA_SHA256

3f5d0f9ac7a7a748bad67a34671556be063e7fc8eda4cb079478238095698786

JAVA_URL

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

JAVA_VERSION

24-ea+25


Layers

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

[#001] sha256:5987a3191d90ca1e07fd03dae1963abcaa49ceabc649ec3bc43f2c96b55d0464 - 32.1% (754 MB)

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

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

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

[#005] sha256:5567a2e8fe44047ad84debc563168755b710c32be4e5878678bdc4b77b18f345 - 0.01% (306 KB)

[#006] sha256:10e51e26bc72ee3a63e41277954c77b31c3a8d043e666db5d6a532c09bca1a03 - 0.0% (1.25 KB)

[#007] sha256:6a18cfe25a2385830857c049c7593ac2a4d5921cf19e377e49e30bcac0eab24b - 0.0% (1.26 KB)

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

[#009] sha256:a33e8acfd907f4d4c87ab4226e8e2dbba30c5769f39d3c430238b8e463193ee2 - 8.48% (199 MB)

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


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

Apply image 10.0.20348.2700

2024-11-02 23:52:43 UTC

Install update 10.0.20348.2849

2024-11-25 23:24:01 UTC

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

2024-11-25 23:25:27 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.'

2024-11-25 23:25:28 UTC

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

2024-11-25 23:25:36 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.'

2024-11-25 23:25:37 UTC

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

2024-11-25 23:25:37 UTC

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

2024-11-25 23:25:38 UTC

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

2024-11-25 23:26: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.'

2024-11-25 23:26:10 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