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

2023-12-27 21:55:06 UTC

Size

1.94 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-23

JAVA_SHA256

540333ea6c1ebfa807c83b9b95584a6bf796924d9e2dd3731975515cb9875fb1

JAVA_URL

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

JAVA_VERSION

23-ea+3


Layers

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

[#001] sha256:7839fc47f6e056f9e09a214230f8b7115e69419dbc74acbbb1ad6bc0caa28862 - 23.98% (477 MB)

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

[#003] sha256:e358dcfbbe3aa7e9a36a95394eac20a2fb57ef7c6cf84ae8c41defd3493722ba - 0.02% (488 KB)

[#004] sha256:50659cee906383c14e2eef616c5002a929b7b5a0acfccd3aa35d09888654d2b5 - 0.0% (1.26 KB)

[#005] sha256:3df951756adf5c2609f84be5d8ff92979d0669e6324095a7625cfb0ec28e6163 - 0.02% (309 KB)

[#006] sha256:cd6def1548c46591c8369512dfc2de4bdf8ce33a2f6b58ebe00d864136e42012 - 0.0% (1.3 KB)

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

[#008] sha256:8952a4cadf6fe5ee0bad4fd06b1b23dcf24a905e0fc79d3b1f4de4bdc583be87 - 0.0% (1.26 KB)

[#009] sha256:4b2ecc00c439a0f76a369e0b9f22b3b01b74bcf725ceffc4528cefbc2bae0e13 - 9.47% (189 MB)

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


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

Apply image 10.0.20348.1787

2023-12-02 12:42:56 UTC

Install update 10.0.20348.2159

2023-12-27 21:53:20 UTC

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

2023-12-27 21:54:25 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.'

2023-12-27 21:54:25 UTC

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

2023-12-27 21:54:32 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.'

2023-12-27 21:54:33 UTC

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

2023-12-27 21:54:33 UTC

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

2023-12-27 21:54:34 UTC

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

2023-12-27 21:55:05 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.'

2023-12-27 21:55:06 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