Namespace
library
Image / Tag
openjdk:24-rc-windowsservercore-1809
Content Digest
sha256:773e6ca8af776ce3876cf05b68c12cd988e116334245249756d9d6f679e4164e
Details
Created

2025-03-12 19:10:13 UTC

Size

2.2 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-24

JAVA_SHA256

11d1d9f6ac272d5361c8a0bef01894364081c7fb1a6914c2ad2fc312ae83d63b

JAVA_URL

https://download.java.net/java/GA/jdk24/1f9ff9062db4449d8ca828c504ffae90/36/GPL/openjdk-24_windows-x64_bin.zip

JAVA_VERSION

24


Layers

[#000] sha256:803f4a9590cb9c635813cbd0ee89190f92d5fe4c7589711cf468879e42ce02ba - 72.86% (1.6 GB)

[#001] sha256:c77bec5e4bac3c7f6dc5d56da5ffc11e72881485b3a55330c17c915ad653f955 - 18.27% (411 MB)

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

[#003] sha256:b6ce30383368ec9b208391193f687ab526ed47757bc58904dda54869a29e3730 - 0.01% (322 KB)

[#004] sha256:347a08e46f58b3a975d6d02e69a0381e708bb4ec72e2ac4e780c668a7e49d01f - 0.0% (1.28 KB)

[#005] sha256:e5c77142addf782a2debcd185d83f78f9bcbe48eabcecc26af4198783fbf5b81 - 0.01% (308 KB)

[#006] sha256:706e14582cd9a230998dca879fd94dde55dbbfd8498647b66dea462a73ff6c27 - 0.0% (1.27 KB)

[#007] sha256:1149f41f3d5f3502123cf7c678a085d5f50c31fa3d7f2b9cc359a713a948b911 - 0.0% (1.26 KB)

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

[#009] sha256:e4e16331066972c1d145793da5a660676c72618bc9109673e4cb9b27444f95eb - 8.85% (199 MB)

[#010] sha256:7bb2cddd04cc081da6eede67908da6363295c46db820c7dc3e2ba21fe42b39a9 - 0.0% (1.3 KB)


History
2024-09-06 01:15:31 UTC

Apply image 10.0.17763.6293

2025-03-05 22:09:20 UTC

Install update 10.0.17763.7009

2025-03-12 19:08:26 UTC

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

2025-03-12 19:09:38 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-03-12 19:09:39 UTC

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

2025-03-12 19:09:45 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-03-12 19:09:46 UTC

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

2025-03-12 19:09:47 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV JAVA_URL=https://download.java.net/java/GA/jdk24/1f9ff9062db4449d8ca828c504ffae90/36/GPL/openjdk-24_windows-x64_bin.zip

2025-03-12 19:09:47 UTC

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

2025-03-12 19:10:12 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-03-12 19:10:13 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