Namespace
library
Image / Tag
openjdk:24-ea-26-windowsservercore-ltsc2022
Content Digest
sha256:1e249fd83e6fc070d43200ef859714524fce0a89bcddaf790a4d33787882a46f
Details
Created

2024-12-03 16:33:42 UTC

Size

2.29 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-24

JAVA_SHA256

b22083fee813d8800a38db2020160bff319d2f6134df449d8c82d9889d120096

JAVA_URL

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

JAVA_VERSION

24-ea+26


Layers

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

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

[#002] sha256:86cfa770ef0d4476e725931edbc9c3f82d9909cbe8bfc436806b7f798d136345 - 0.0% (1.29 KB)

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

[#004] sha256:a71db9daf48d1777eda2348465b40a03b23f3ca6b4c5425f0789a62a4fca0366 - 0.0% (1.25 KB)

[#005] sha256:52c9f2a3bf7eff81d86e071f400cbd7159de25c1876a9479964b13567efd1dcb - 0.01% (305 KB)

[#006] sha256:95b1f1970e4ad11dd314392e9e2700c368a6fb3516dcd38b1a94e159961631ef - 0.0% (1.31 KB)

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

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

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

[#010] sha256:2d0b7e23ec8cefe27178f81311e864c07daebd42f6259f0e8ab4ebc8b0ad2a7e - 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-12-03 16:31:40 UTC

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

2024-12-03 16:32: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.'

2024-12-03 16:32:56 UTC

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

2024-12-03 16:33:03 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-12-03 16:33:03 UTC

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

2024-12-03 16:33:04 UTC

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

2024-12-03 16:33:05 UTC

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

2024-12-03 16:33:39 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-12-03 16:33:42 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