Namespace
library
Image / Tag
hylang:1.0-pypy3.11-windowsservercore-1809
Content Digest
sha256:b4920a4af7553e8317dbd7444abe345aaa3f9a151b4dfda685acf86291ce3c64
Details
Created

2025-04-18 04:23:54 UTC

Size

2.07 GB

Content Digest
Environment
HYRULE_VERSION

1.0.0

HY_VERSION

1.0.0

PYPY_VERSION

7.3.19


Layers

[#000] sha256:803f4a9590cb9c635813cbd0ee89190f92d5fe4c7589711cf468879e42ce02ba - 77.51% (1.6 GB)

[#001] sha256:632102e3f287de7b6ffd6cab740fb7afe94ac8418060651b0954506aeecc48f1 - 20.06% (425 MB)

[#002] sha256:9cf5425b0d7cd2f1e945ca428bc08593d7f4e242e81909a2c13da6007189859e - 0.0% (1.32 KB)

[#003] sha256:5cb5f86e1202bb8948501d8290c42e1d0d1432e4fabed4774700ed940e483210 - 0.01% (319 KB)

[#004] sha256:c1205a53b54b0eebee92b46c8fa0ddff1bf54d30b818842196c6d4171397e9e2 - 0.7% (14.8 MB)

[#005] sha256:5021e4ac0f7d573d72336f635927fb068f4cd20328d198311ac7547a1a10f0d4 - 0.0% (1.3 KB)

[#006] sha256:b66686a2088e41bf0f0e9ddbbe14fc950598a7c1ea615924b1bb2a664a8780fe - 1.38% (29.2 MB)

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

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

[#009] sha256:2dfde7b2bbc0ca0b03f36485b58c30ff2a242dc74ab4e5e612c41d241c302599 - 0.0% (1.34 KB)

[#010] sha256:24ea0d995874794d99e369688f4e84c0ba4b9aa69ba3a32a5b24719ca949b81c - 0.33% (6.99 MB)

[#011] sha256:1cc5f14ab74c365adbd0d289425bac60785a65848e825e2bf1670978115b09e6 - 0.0% (1.26 KB)


History
2024-09-06 01:15:31 UTC

Apply image 10.0.17763.6293

2025-04-15 01:47:49 UTC

Install update 10.0.17763.7249

2025-04-18 03:21:47 UTC

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

2025-04-18 03:22:07 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('C:\pypy;C:\pypy\Scripts;{0}' -f $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine); Write-Host 'Complete.'

2025-04-18 03:22:20 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'; Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'vc.exe'; $sha256 = 'da66717784c192f1004e856bbcf7b3e13b7bf3ea45932c48e4c9b9a50ca80965'; Write-Host ('Verifying sha256 ({0}) ...' -f $sha256); if ((Get-FileHash vc.exe -Algorithm sha256).Hash -ne $sha256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Installing ...'; Start-Process -NoNewWindow -Wait -FilePath .\vc.exe -ArgumentList @( '/install', '/quiet', '/norestart' ); Write-Host 'Removing ...'; Remove-Item vc.exe -Force; Write-Host 'Complete.'

2025-04-18 03:22:21 UTC

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

2025-04-18 03:22:57 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://downloads.python.org/pypy/pypy3.11-v7.3.19-win64.zip'; Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'pypy.zip'; $sha256 = 'b61c7c1dbf879eda6f779c374bfbbeecd3f618ada08404705a1a19d39df48dbd'; Write-Host ('Verifying sha256 ({0}) ...' -f $sha256); if ((Get-FileHash pypy.zip -Algorithm sha256).Hash -ne $sha256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; Expand-Archive pypy.zip -DestinationPath C:\; Write-Host 'Removing ...'; Remove-Item pypy.zip -Force; Write-Host 'Renaming ...'; Rename-Item -Path C:\pypy3.11-v7.3.19-win64 -NewName C:\pypy; Write-Host 'Verifying install ("pypy --version") ...'; pypy --version; Write-Host 'Installing pip ...'; pypy -m ensurepip --default-pip; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Installing "wheel" (backwards compat) ...'; pip install --disable-pip-version-check --no-cache-dir --no-compile 'wheel<0.46'; Write-Host 'Cleanup install ...'; Get-ChildItem -Path C:\pypy -Include @( 'test', 'tests' ) -Directory -Recurse | Remove-Item -Force -Recurse; Get-ChildItem -Path C:\pypy -Include @( '*.pyc', '*.pyo' ) -File -Recurse | Remove-Item -Force; Write-Host 'Complete.'

2025-04-18 03:22:58 UTC

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

2025-04-18 04:22:28 UTC

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

2025-04-18 04:22:30 UTC

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

2025-04-18 04:23:54 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; pip install --no-cache-dir ('hy == {0}' -f $env:HY_VERSION) ('hyrule == {0}' -f $env:HYRULE_VERSION)

2025-04-18 04:23:54 UTC

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

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