Namespace
library
Image / Tag
hylang:1.0a3-pypy-windowsservercore-1809
Content Digest
sha256:3d6a139edcd3f8e01d3ea303a0c2ab1a091541a20da433450d7f69c1e7b38da3
Details
Created

2021-12-18 10:40:30 UTC

Size

2.57 GB

Content Digest
Environment
HY_VERSION

1.0a3

PYPY_VERSION

7.3.7

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:4612f6d0b889cad0ed0292fae3a0b0c8a9e49aff6dea8eb049b2386d9b07986f - 62.29% (1.6 GB)

[#001] sha256:5ee7a7ea9cf22f75886179907a41810a992e21f3d0c57cc10d2147ce9237701c - 35.89% (944 MB)

[#002] sha256:31b2acce136e44984ba36d64717a6a67fbf1a98ed7ffcf0a14df848c1502a345 - 0.0% (1.4 KB)

[#003] sha256:718af41753981133682dd66815289bb542887e7bb018f73907a5f0731d8b9414 - 0.01% (362 KB)

[#004] sha256:0fb99586f2d186ff3586ea717bb39426480539d9207a0c55c2341dc8abe75825 - 0.56% (14.8 MB)

[#005] sha256:f30a0cb1295b27e9e5b86ee93a76d7fe74ad912d78a747cbb036678c1d3ad9fd - 0.0% (1.38 KB)

[#006] sha256:3fe8f2a0164bef1bf08c2cd1f549dd9893c675bbeeea67f05cec2efdc277c270 - 0.98% (25.8 MB)

[#007] sha256:b57f03dcff2c076e7013b19cfddff93892e4b1b12099f8a28da3306e1eccdc6b - 0.0% (1.37 KB)

[#008] sha256:4132239340d0698c76d628ed74dc15812c2d4f211b8935e7a3816469371922ca - 0.0% (1.41 KB)

[#009] sha256:964ce5a8067afc9c8ce6f623d6cd1d738e7e34342196dd37d4949b8bf858845c - 0.11% (2.85 MB)

[#010] sha256:a0209c8d4f28c9af697680d5de3bb698ead66b8939bb3cc3d6ede8dbf24e1bfd - 0.0% (1.4 KB)

[#011] sha256:bdceb0b339354966b60d8d1d0fa9fb6a29d5f48aa6443930b50aaad1a66fcf75 - 0.0% (1.35 KB)

[#012] sha256:bc3ddb3bef760cefd7078c1bad47b814341442aea42a85eab7ee65d6446fe946 - 0.16% (4.11 MB)

[#013] sha256:229d3dbadd4e8a6d91e0e8bfb11746f36ebaa2c1b4fbb3a04538d5339c780635 - 0.0% (1.4 KB)


History
2020-05-07 05:09:25 UTC

Apply image 1809-RTM-amd64

2021-12-07 04:56:01 UTC

Install update 1809-amd64

2021-12-17 23:26:44 UTC

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

2021-12-17 23:28:35 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.'

2021-12-17 23:30:30 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.'

2021-12-17 23:30:31 UTC

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

2021-12-17 23:33:09 UTC

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

2021-12-17 23:33:10 UTC

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

2021-12-17 23:33:11 UTC

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

2021-12-17 23:36:02 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.'

2021-12-17 23:36:03 UTC

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

2021-12-18 10:38:41 UTC

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

2021-12-18 10:40:29 UTC

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

2021-12-18 10:40:30 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