Namespace
library
Image / Tag
openjdk:25-ea-34-windowsservercore
Content Digest
sha256:b43058138a17b3360fb3f54ac6dce99dddca207fc5f0aa7dbe08307fef94df0c
Details
Created

2025-08-04 21:01:09 UTC

Size

3.46 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-25

JAVA_SHA256

59e8a607698d978c77ab04b5a7748f85831b5776858eac51fea4c4c165a32fd0

JAVA_URL

https://download.java.net/java/early_access/jdk25/34/GPL/openjdk-25-ea+34_windows-x64_bin.zip

JAVA_VERSION

25-ea+34


Layers

[#000] sha256:1317fe15185685e9cd27f7542cd96f4847343401288a8b6798273a4ac60844eb - 59.7% (2.06 GB)

[#001] sha256:49ebc78effce2335b8fe04c34f5f1f3e33e513d5a7831fa81718af6737b3d654 - 34.38% (1.19 GB)

[#002] sha256:516f5e807f6c6cf84632547678db408d303dfe9202b782786468160f192ab03a - 0.0% (1.33 KB)

[#003] sha256:34ec233a35cf6eefb5ae8f936869ebe265c38ad75760845f1af1a812c4fc54f7 - 0.01% (380 KB)

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

[#005] sha256:72fa32c295367309a8f9d0f77bdea79878e420f7c2968150ab40d2c049248e56 - 0.01% (362 KB)

[#006] sha256:afea0f55979fb81f68675c163f5f35a4e69720cb42c95241f126cbf26e889d47 - 0.0% (1.29 KB)

[#007] sha256:6dbb08f8dd3bf16656c5dfe6f6962504a407ad11140f594a737636135697b130 - 0.0% (1.29 KB)

[#008] sha256:85d7d9e16b103be70d3ee72cfe8090c450779cbca9caed56c4d5b3f1dbc416a1 - 0.0% (1.3 KB)

[#009] sha256:fd04c6379d0c3d33dc064b27b39914a56225240e075731a4d364a751e7a2e1a5 - 5.9% (209 MB)

[#010] sha256:e16b2023af038fe1eea6d36eb530c04d655a77b2ea05f0a3fdc355775e5fced9 - 0.0% (1.3 KB)


History
2024-12-08 22:41:37 UTC

Apply image 10.0.26100.2605

2025-07-05 18:40:54 UTC

Install update 10.0.26100.4652

2025-08-04 21:00:35 UTC

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

2025-08-04 21:00:42 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.'

2025-08-04 21:00:43 UTC

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

2025-08-04 21:00:48 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.'

2025-08-04 21:00:48 UTC

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

2025-08-04 21:00:49 UTC

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

2025-08-04 21:00:49 UTC

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

2025-08-04 21:01:09 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.'

2025-08-04 21:01:09 UTC

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

Details
Created

2025-08-04 20:57:13 UTC

Size

2.33 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-25

JAVA_SHA256

59e8a607698d978c77ab04b5a7748f85831b5776858eac51fea4c4c165a32fd0

JAVA_URL

https://download.java.net/java/early_access/jdk25/34/GPL/openjdk-25-ea+34_windows-x64_bin.zip

JAVA_VERSION

25-ea+34


Layers

[#000] sha256:2534953f34d35976fc44cd67bfdd39fdcd9e2eaae57ada0be53d5fb936cd3a0b - 58.48% (1.36 GB)

[#001] sha256:b829944a73d1d8ad37eaa13c64bf9189b6895cc5b45b79bb3563fa325d94b6a7 - 32.73% (780 MB)

[#002] sha256:6f4e148404224d388130ca7ad37d7790362100a93df32474972f16584249d27e - 0.0% (1.25 KB)

[#003] sha256:4ecb975d1c1c0011be2cd034f1ce499dd5c2a03a87e005c7d9f95980e08d366a - 0.01% (351 KB)

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

[#005] sha256:3acb11e4e77a03f398cf5c890902014877d5bf39d09e24d2e54f8e1aa9651b9c - 0.01% (338 KB)

[#006] sha256:0bd4aab46e5dbeede72298d7f56dc296cb3ba7f489683eb48954cc863e7393ed - 0.0% (1.25 KB)

[#007] sha256:e63a7d35a04524621799c99b61b419fc87f47e3772b76abe3eaaaba80b67f4d1 - 0.0% (1.23 KB)

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

[#009] sha256:38633b5a3ccb01e1435bdf39e7d1806345272a1896951d67d5a2814e462c7517 - 8.76% (209 MB)

[#010] sha256:1d68b6ed8a805106724ea4b6158ffd65465c11f980b82a3aced5011fbc867672 - 0.0% (1.25 KB)


History
2024-09-06 00:01:38 UTC

Apply image 10.0.20348.2700

2025-07-05 05:31:06 UTC

Install update 10.0.20348.3932

2025-08-04 20:56:17 UTC

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

2025-08-04 20:56:34 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.'

2025-08-04 20:56:35 UTC

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

2025-08-04 20:56:43 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.'

2025-08-04 20:56:44 UTC

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

2025-08-04 20:56:45 UTC

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

2025-08-04 20:56:46 UTC

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

2025-08-04 20:57:11 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.'

2025-08-04 20:57:13 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