Namespace
library
Image / Tag
hylang:0.24.0-pypy3.7-windowsservercore-1809
Content Digest
sha256:fd67527a0e43cdb45d182122c0d84acaacf28727ed0eede8d05003351f7735f1
Details
Created

2022-10-12 16:34:43 UTC

Size

2.57 GB

Content Digest
Environment
HYRULE_VERSION

0.2

HY_VERSION

0.24.0

PYPY_VERSION

7.3.9

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py


Layers

[#000] sha256:b111c3320c949bea81612bf4554f1b6592c2f504920b5bf57ba340a1d4d52c93 - 67.98% (1.75 GB)

[#001] sha256:028c482fad0f111537a40f65401f65de54c9fd682951a4f8cf9b644d7c128e18 - 30.2% (795 MB)

[#002] sha256:c70f9828a2aec7ea0624298c8cc6f0bcb5f21b439f4e96304b8b47c8bf15ef8d - 0.0% (1.39 KB)

[#003] sha256:9c83b73c5aec906bf29d023824962f606da367af193b8e5236b4b1dcdcb3adde - 0.01% (337 KB)

[#004] sha256:648e1068c8429c01c4970044dffd1725b8b0ab79b516f579964e02ad3b19cdec - 0.56% (14.8 MB)

[#005] sha256:1c8d589211a79f0eb97496f62eeb4bacd9e1549ee4dbe246146f7b579052b0f5 - 0.0% (1.26 KB)

[#006] sha256:9f71433addb2dd5b32d69a1a82320afe8f092ce54ebe9f7a53a02cf20162c64b - 0.95% (25 MB)

[#007] sha256:3bdb5dae52aba1a21b111c9811e6ceaaff9b1a2f5fff05241e8aef6f7a876ef6 - 0.0% (1.4 KB)

[#008] sha256:9e976aea9e150b11576789d6dd8657a18f5be594a24607dc83a721eb049ed5a2 - 0.0% (1.39 KB)

[#009] sha256:8516e434b2bb1997373c0137d30cdcb6b4ddf283523b2148e121654b6d64f947 - 0.12% (3.26 MB)

[#010] sha256:47c9c9c2032b5a926c05cad2304d44ea0bfa8c639937cd9a76700ceb7c2044f3 - 0.0% (1.39 KB)

[#011] sha256:008a08fae0025312d328deddee87ae7231523ec8435ae66cb19e9f1758a0fe51 - 0.0% (1.38 KB)

[#012] sha256:35ee527001f490dd5eb5e74d3d502df0b5472a85c434d0bf75ff39b26e379748 - 0.0% (1.35 KB)

[#013] sha256:ac6b2b127c69b8f95cd00cd71130c166cde4cd84470c37d9ad09f10f4ad24d5d - 0.17% (4.56 MB)

[#014] sha256:e41e55782f7ae466bfd76186db40dd5010d90c569f977a984d401aa7093e8b7b - 0.0% (1.33 KB)


History
2022-04-22 01:27:13 UTC

Apply image 10.0.17763.2803

2022-10-08 01:55:32 UTC

Install update 10.0.17763.3532

2022-10-11 20:24:02 UTC

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

2022-10-12 12:08:15 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.'

2022-10-12 12:09:14 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.'

2022-10-12 12:09:14 UTC

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

2022-10-12 12:22:16 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://downloads.python.org/pypy/pypy3.7-v7.3.9-win64.zip'; Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'pypy.zip'; $sha256 = '8acb184b48fb3c854de0662e4d23a66b90e73b1ab73a86695022c12c745d8b00'; 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.7-v7.3.9-win64 -NewName C:\pypy; Write-Host 'Verifying install ("pypy3 --version") ...'; pypy3 --version; 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.'

2022-10-12 12:22:18 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py

2022-10-12 12:22:19 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2022-10-12 12:24:12 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading get-pip.py ({0}) ...' -f $env:PYTHON_GET_PIP_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $env:PYTHON_GET_PIP_URL -OutFile 'get-pip.py'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:PYTHON_GET_PIP_SHA256); if ((Get-FileHash 'get-pip.py' -Algorithm sha256).Hash -ne $env:PYTHON_GET_PIP_SHA256) { Write-Host 'FAILED!'; exit 1; }; $pipVersion = & pypy3 -c 'import ensurepip; print(ensurepip._PIP_VERSION)'; $setuptoolsVersion = & pypy3 -c 'import ensurepip; print(ensurepip._SETUPTOOLS_VERSION)'; Write-Host ('Installing "pip == {0}", "setuptools == {1}" ...' -f $pipVersion, $setuptoolsVersion); pypy3 get-pip.py --disable-pip-version-check --no-cache-dir ('pip == {0}' -f $pipVersion) ('setuptools == {0}' -f $setuptoolsVersion) ; Remove-Item get-pip.py -Force; Write-Host 'Verifying pip install ...'; pip --version; 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.'

2022-10-12 12:24:13 UTC

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

2022-10-12 16:31:55 UTC

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

2022-10-12 16:31:56 UTC

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

2022-10-12 16:34:42 UTC

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

2022-10-12 16:34:43 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