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

2024-02-14 20:05:43 UTC

Size

1.96 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:7c76e5cf7755ce357ffb737715b0da6799a50ea468cc252c094f4d915d426b3f - 65.83% (1.29 GB)

[#001] sha256:855fa6b82f2f8fea22646f0d4aa228ea8cbb8bc562afd14a163a8f3d0eb010e1 - 24.75% (498 MB)

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

[#003] sha256:385bfb9b627e5dfd49895b57c5cecb06a945816b39f3ecbe86cace77682d1679 - 0.02% (492 KB)

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

[#005] sha256:5376f0bf822edacaaba9d884173c798ee9fd9073f70cc6bde6a70e82873c973f - 0.02% (347 KB)

[#006] sha256:07f68de43a74c5217362e45939c743c2e518df9fda4f3d54d8be96f254270ba9 - 0.0% (1.26 KB)

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

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

[#009] sha256:8082bffd234f2be6626e059312f6cee4d62aea6edfdb7122dd98ef6608a244b9 - 9.38% (189 MB)

[#010] sha256:366449e3db53e03e198ed1d66685336a82ed12e74f02c1bcb9271a9cce882fb9 - 0.0% (1.27 KB)


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

Apply image 10.0.20348.1787

2024-02-07 06:55:59 UTC

Install update 10.0.20348.2322

2024-02-14 20:04:58 UTC

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

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

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

2024-02-14 20:05:21 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:05:22 UTC

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

2024-02-14 20:05:22 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:05:23 UTC

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

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

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

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