Namespace
library
Image / Tag
openjdk:24-ea-3-jdk-windowsservercore-ltsc2022
Content Digest
sha256:883e9527755acebce007cdbb2d936b99991dd73ff75d3a613691451008b70f51
Details
Created

2024-06-22 01:06:03 UTC

Size

2.17 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-24

JAVA_SHA256

dadb681c56ce901258f2c4dc34514ff6eb2b62bddf51f507bebdabac55556dbb

JAVA_URL

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

JAVA_VERSION

24-ea+3


Layers

[#000] sha256:7c76e5cf7755ce357ffb737715b0da6799a50ea468cc252c094f4d915d426b3f - 59.71% (1.29 GB)

[#001] sha256:eb373ec9afdfc5f09b9380d981e0c61f9c7b48537b887135c7c66810086e705e - 31.37% (696 MB)

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

[#003] sha256:f4e5ac21c3ac7ec3766413554f120057b0f85b796f91a5def14d00ea0acd1705 - 0.02% (351 KB)

[#004] sha256:20ed8df641846649e53b81f84f53b33bd1eaacbf48f52b188ed4c20bd48a8eed - 0.0% (1.26 KB)

[#005] sha256:8125212605659ee3ba337510b4682117d7fbc01fdc2b98732565bd6c04e1c6a4 - 0.01% (336 KB)

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

[#007] sha256:8354faf79fbe25d20ea8ecdde3e0919167a7a120e66824622a3a3314ede363e2 - 0.0% (1.25 KB)

[#008] sha256:a18c2ce97cba73160d611b99cfc5d64e2b660447d30c5bd527befa8dbed57880 - 0.0% (1.25 KB)

[#009] sha256:9af68d8f3700f449fbe8382bfa70084f5ba01a003cc8de319ea2c87450e67a19 - 8.88% (197 MB)

[#010] sha256:7f5a49744170d3c288de41114b171543500ecde84d76b5ade3c05c8aa7afb2eb - 0.0% (1.25 KB)


History
2023-06-08 12:55:20 UTC

Apply image 10.0.20348.1787

2024-06-19 19:58:05 UTC

Install update 10.0.20348.2529

2024-06-22 01:05:07 UTC

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

2024-06-22 01:05:26 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-06-22 01:05:27 UTC

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

2024-06-22 01:05:33 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-06-22 01:05:33 UTC

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

2024-06-22 01:05:34 UTC

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

2024-06-22 01:05:34 UTC

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

2024-06-22 01:06:02 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-06-22 01:06:03 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