Namespace
library
Image / Tag
openjdk:23-ea-8-windowsservercore-1809
Content Digest
sha256:cf2353f47540b8282b6b7a65970b0e8021ecb1bee7f728c15b7e59c7dadad175
Details
Created

2024-02-14 20:01:43 UTC

Size

2.12 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-23

JAVA_SHA256

3bf12bda8aa3d293ed14f6956bd24e598c395e3267be4b58191e542ec7d3479a

JAVA_URL

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

JAVA_VERSION

23-ea+8


Layers

[#000] sha256:c9226d61d3bdbf9f09821b32f5878623b8daaa5fb4f875cb63c199f87a26d57e - 72.42% (1.54 GB)

[#001] sha256:dda007680e5cddfaf6f5428f70f8c514ac0b9dd099972b7d475cce4c5c899558 - 18.86% (410 MB)

[#002] sha256:ec943b1666948fcda90228c2495c693f8abf24bde2f5f4c097cbddfdbdb1b509 - 0.0% (1.36 KB)

[#003] sha256:0fa0a5852e60a226aba42c7f79e0f3ad8f5fe1c9996a30a62146eb2a0ef0b05a - 0.02% (478 KB)

[#004] sha256:61567085d47cb030b10a576072ba8fbb66d9343b0e3a4e8057673d833695d5d4 - 0.0% (1.33 KB)

[#005] sha256:1e4a88616913603e35a6672ea1e732c0cdb213bc1770e847b574f00a69798295 - 0.02% (334 KB)

[#006] sha256:c0d2843d53d7dcacdac37de03514588c92efa05ac77e1fcc857b123c526c1208 - 0.0% (1.33 KB)

[#007] sha256:9a508ba7ff7645b4d5eab1dcef3e858da220ce3f0ccd7e5f6c91d80c7c7469f0 - 0.0% (1.35 KB)

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

[#009] sha256:6e58c9e25f14dbb716ef7c165393a3003fdb094576b2e6b5da8f6428c8906cee - 8.68% (189 MB)

[#010] sha256:c5f556cbdb3296f59172d651dabdef673ad9c1af3084422a872d6a115502464c - 0.0% (1.33 KB)


History
2023-06-08 12:58:24 UTC

Apply image 10.0.17763.4499

2024-02-04 04:14:09 UTC

Install update 10.0.17763.5458

2024-02-14 19:59:58 UTC

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

2024-02-14 20:00:53 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-02-14 20:00:54 UTC

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

2024-02-14 20:01:01 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-02-14 20:01:01 UTC

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

2024-02-14 20:01:02 UTC

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

2024-02-14 20:01:02 UTC

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

2024-02-14 20:01:42 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-02-14 20:01:43 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