Namespace
library
Image / Tag
openjdk:23-ea-24-windowsservercore-ltsc2022
Content Digest
sha256:bce043f348f6113c3632a9a4dd6689d6d3be9d2265e316d1de35ee1698681464
Details
Created

2024-05-29 23:02:35 UTC

Size

2.16 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-23

JAVA_SHA256

d1ca7c4de58322ccecc8598cbfb62a4585ee958e91b66562923df1eac562e816

JAVA_URL

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

JAVA_VERSION

23-ea+24


Layers

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

[#001] sha256:ba03114511317f14392dd2ac806678d1f79c73a8a7e0bc64013540e54c22020f - 31.22% (691 MB)

[#002] sha256:413bcf516c2ec3d5fe089c371d9d5c93ff914a027199b94709100a88d5bc016a - 0.0% (1.31 KB)

[#003] sha256:3f1584f9981234827c702a93f94d35579780bc4e7b3cb3437a20a49bf6d68ca7 - 0.02% (342 KB)

[#004] sha256:77c07b90d1a62dff46346c8f4be762bf79a031472b9ce03d6837cc880c071a44 - 0.0% (1.26 KB)

[#005] sha256:e96922538905ab925e2dc24c4c60c88f5afb2cd228e1847fd9e7c3e8a3dace89 - 0.01% (294 KB)

[#006] sha256:4489f9cfc262ad3d0371530b8dc8bf712dcd8374e6e5a5826e3c8038c95c5c4a - 0.0% (1.26 KB)

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

[#008] sha256:1a3b6d7df801e1b192b45ff9d057d259a6d3005aadb9f8bdb6117f1bc5db7057 - 0.0% (1.26 KB)

[#009] sha256:320c9cd30d8c1b6e3e58c513adf00d6936165af12f9ff617e95e5839880f3c76 - 8.87% (196 MB)

[#010] sha256:5a444a778f7d9c2fed47ddbf5aeaaa216a03359cfd943892afc0230ea8fb8b5c - 0.0% (1.26 KB)


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

Apply image 10.0.20348.1787

2024-05-10 20:40:01 UTC

Install update 10.0.20348.2461

2024-05-29 23:00:54 UTC

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

2024-05-29 23:01:58 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-05-29 23:01:59 UTC

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

2024-05-29 23:02:05 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-05-29 23:02:06 UTC

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

2024-05-29 23:02:07 UTC

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

2024-05-29 23:02:07 UTC

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

2024-05-29 23:02:34 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-05-29 23:02:35 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