Namespace
library
Image / Tag
openjdk:24-ea-19-jdk-windowsservercore-ltsc2022
Content Digest
sha256:0ec49f514e34930b5aac1117db7c0ae3e3bd945af4cb4ada31f2f9cacd473a3b
Details
Created

2024-10-11 19:08:24 UTC

Size

1.87 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-24

JAVA_SHA256

c90e6e8d5c865f3712dc302b6bec4f6c9f66d372764d0dbef55391fb52198a08

JAVA_URL

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

JAVA_VERSION

24-ea+19


Layers

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

[#001] sha256:3445b497121718058765c341117a0c1522c51cd65bec8c517981a745ff91f0bf - 16.79% (322 MB)

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

[#003] sha256:fb0be229b6561339a2a7358ab37bcbc220cc2387fef4d7428f4f68569c498440 - 0.02% (472 KB)

[#004] sha256:20a9ec6e4707075350412b93649b286fa45abf4dd40b5b7a468c0ff572db5258 - 0.0% (1.28 KB)

[#005] sha256:e5933a8cb3b75b0f3c34c124a85e8f8c5b8f152a1345b894b129b471e6acd1ec - 0.02% (328 KB)

[#006] sha256:762b0061a28b09a6f4b04444cf2d45939c99dfb2ceef8494bb16440ea9243018 - 0.0% (1.28 KB)

[#007] sha256:787b53e9dd2c704364d6f8a6c8343ec265de05595f7c6defe913d5cacd19f8be - 0.0% (1.26 KB)

[#008] sha256:e398914931112f49835c8a14fffcda458e9c06a9f3fd207e1de9e6b9e9945fcf - 0.0% (1.32 KB)

[#009] sha256:b9a37cb7c41efa324f04b88f2dd4f774382b0fd99e7176322db84a3cec477f25 - 10.38% (199 MB)

[#010] sha256:ffc156d337ccb48e87d4672e29e865a208209c720c0a685518a0012333f7d5fa - 0.0% (1.34 KB)


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

Apply image 10.0.20348.2700

2024-10-06 04:56:48 UTC

Install update 10.0.20348.2762

2024-10-11 19:07:29 UTC

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

2024-10-11 19:07:52 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-10-11 19:07:52 UTC

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

2024-10-11 19:07:58 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-10-11 19:07:59 UTC

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

2024-10-11 19:07:59 UTC

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

2024-10-11 19:08:00 UTC

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

2024-10-11 19:08:23 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-10-11 19:08:24 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