Namespace
library
Image / Tag
hylang:1.0a3-pypy3.8
Content Digest
sha256:e9f6374d2da2bc7737e499628a5fad7a2b429213cd9463110e249783a0ee544a
Details
Created

2021-12-22 09:46:51 UTC

Size

70.5 MB

Content Digest
Environment
HY_VERSION

1.0a3

LANG

C.UTF-8

PATH

/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

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:9b9a100d632569e96aeb2d7b0bc45bc436609bb61335815f207994f3b557f0f7 - 43.82% (30.9 MB)

[#001] sha256:9e665f9ad46214f4b0d93397c46596c9e51650092c273889e956bc5206feb933 - 1.46% (1.03 MB)

[#002] sha256:cdf2f1f5559b2193bd952edffc1f0cf2697c6c273a3109dbfc406c1c778cf7a3 - 46.76% (32.9 MB)

[#003] sha256:9e834467169969c7c747239d0673a8da7c773144684b962eab2a5b9d743cd849 - 3.52% (2.48 MB)

[#004] sha256:da72f404861b6bf6d2e5bdb9981e80e9d9175b7638513445b19fca6e0270164b - 4.44% (3.13 MB)


History
2021-12-21 01:40:06 UTC

/bin/sh -c #(nop) ADD file:6b67a0d4d176747cc8cefbd105facde82f1795467bf02eb45e8385c91cdc9c41 in /

2021-12-21 01:40:09 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-12-21 19:24:04 UTC

/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates; rm -rf /var/lib/apt/lists/*

2021-12-21 19:24:04 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2021-12-21 19:24:04 UTC

/bin/sh -c #(nop) ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-12-21 19:24:04 UTC

/bin/sh -c #(nop) ENV PYPY_VERSION=7.3.7

2021-12-21 19:24:41 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-linux64.tar.bz2'; sha256='5dee37c7c3cb8b160028fbde3a5901c68043dfa545a16794502b897d4bc40d7e'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-aarch64.tar.bz2'; sha256='cbd44e0a9146b3c03a9d14b265774a848f387ed846316c3e984847e278d0efd3'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-linux32.tar.bz2'; sha256='dfb9d005f0fc917edc60fd618143e4934c412f9168b55166f5519ba0a3b1a835'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-s390x.tar.bz2'; sha256='ae7d6a76490b317a74b87788d596610c7ffd0ae2d3ffa2433d5bb5300f6b4b77'; ;; *) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding PyPy $PYPY_VERSION binary release"; exit 1 ;; esac; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends bzip2 wget libexpat1 libncurses5 libncursesw6 libsqlite3-0 ; wget -O pypy.tar.bz2 "$url" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum --check --strict -; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib* -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; ln -sv '/opt/pypy/bin/pypy3' /usr/local/bin/; pypy3 --version; cd /opt/pypy/lib/pypy3.8; if [ -f _gdbm_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libgdbm-dev; pypy3 _gdbm_build.py; fi; if [ -f _ssl_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libssl-dev; pypy3 _ssl_build.py; fi; if [ -f _lzma_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev liblzma-dev; pypy3 _lzma_build.py; fi; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; find /opt/pypy -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pypy3 --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +

2021-12-21 19:24:42 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py

2021-12-21 19:24:42 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2021-12-21 19:24:55 UTC

/bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends wget; rm -rf /var/lib/apt/lists/*; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum --check --strict -; pipVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._PIP_VERSION)')"; setuptoolsVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._SETUPTOOLS_VERSION)')"; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip == $pipVersion" "setuptools == $setuptoolsVersion" ; apt-get purge -y --auto-remove wget; pip --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2021-12-21 19:24:56 UTC

/bin/sh -c #(nop) CMD ["pypy3"]

2021-12-22 09:46:41 UTC

/bin/sh -c #(nop) ENV HY_VERSION=1.0a3

2021-12-22 09:46:51 UTC

/bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION"

2021-12-22 09:46:51 UTC

/bin/sh -c #(nop) CMD ["hy"]

Details
Created

2021-12-22 09:35:03 UTC

Size

70 MB

Content Digest
Environment
HY_VERSION

1.0a3

LANG

C.UTF-8

PATH

/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

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:a2abf6c4d29d43a4bf9fbb769f524d0fb36a2edab49819c1bf3e76f409f953ea - 42.7% (29.9 MB)

[#001] sha256:8b4932d9ac796414ba200427eaa3a16cfe6654c1b039a6e2bf3ceaa5848b225f - 1.45% (1.02 MB)

[#002] sha256:7f7ec5ee1c9ed1c617af6c4874abb759930a85d64817841c704ac7228802dc05 - 47.84% (33.5 MB)

[#003] sha256:29b911c631c8894dc6d57bed31e023ff32688da994aa7673429e82db87778cad - 3.54% (2.48 MB)

[#004] sha256:b99c1f69e4ebb993de6e984038f0cbe6539e72aaf234c3f1458d5dfbe0e879d4 - 4.47% (3.13 MB)


History
2021-12-21 01:22:43 UTC

/bin/sh -c #(nop) ADD file:09675d11695f65c55efdc393ff0cd32f30194cd7d0fbef4631eebfed4414ac97 in /

2021-12-21 01:22:43 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-12-21 03:06:24 UTC

/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates; rm -rf /var/lib/apt/lists/*

2021-12-21 03:06:24 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2021-12-21 03:06:25 UTC

/bin/sh -c #(nop) ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-12-21 03:06:25 UTC

/bin/sh -c #(nop) ENV PYPY_VERSION=7.3.7

2021-12-21 03:07:06 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-linux64.tar.bz2'; sha256='5dee37c7c3cb8b160028fbde3a5901c68043dfa545a16794502b897d4bc40d7e'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-aarch64.tar.bz2'; sha256='cbd44e0a9146b3c03a9d14b265774a848f387ed846316c3e984847e278d0efd3'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-linux32.tar.bz2'; sha256='dfb9d005f0fc917edc60fd618143e4934c412f9168b55166f5519ba0a3b1a835'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-s390x.tar.bz2'; sha256='ae7d6a76490b317a74b87788d596610c7ffd0ae2d3ffa2433d5bb5300f6b4b77'; ;; *) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding PyPy $PYPY_VERSION binary release"; exit 1 ;; esac; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends bzip2 wget libexpat1 libncurses5 libncursesw6 libsqlite3-0 ; wget -O pypy.tar.bz2 "$url" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum --check --strict -; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib* -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; ln -sv '/opt/pypy/bin/pypy3' /usr/local/bin/; pypy3 --version; cd /opt/pypy/lib/pypy3.8; if [ -f _gdbm_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libgdbm-dev; pypy3 _gdbm_build.py; fi; if [ -f _ssl_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libssl-dev; pypy3 _ssl_build.py; fi; if [ -f _lzma_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev liblzma-dev; pypy3 _lzma_build.py; fi; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; find /opt/pypy -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pypy3 --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +

2021-12-21 03:07:06 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py

2021-12-21 03:07:07 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2021-12-21 03:07:22 UTC

/bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends wget; rm -rf /var/lib/apt/lists/*; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum --check --strict -; pipVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._PIP_VERSION)')"; setuptoolsVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._SETUPTOOLS_VERSION)')"; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip == $pipVersion" "setuptools == $setuptoolsVersion" ; apt-get purge -y --auto-remove wget; pip --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2021-12-21 03:07:22 UTC

/bin/sh -c #(nop) CMD ["pypy3"]

2021-12-22 09:34:54 UTC

/bin/sh -c #(nop) ENV HY_VERSION=1.0a3

2021-12-22 09:35:02 UTC

/bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION"

2021-12-22 09:35:03 UTC

/bin/sh -c #(nop) CMD ["hy"]

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"]

Details
Created

2021-12-22 02:46:35 UTC

Size

65.8 MB

Content Digest
Environment
HY_VERSION

1.0a3

LANG

C.UTF-8

PATH

/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

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:927a35006d93ea08499b57046904046d7926cd76fb17be193e3e74f56d634a08 - 43.51% (28.7 MB)

[#001] sha256:487cc47b6db3d708ad04f3f9f424c4ca0f3f0a85687001043f1e1e90bb6d9789 - 1.53% (1.01 MB)

[#002] sha256:e2d379ff02d18bcdddd7f8e919585c4f21e7e03a06ec335ee93657ad76f22ec0 - 46.75% (30.8 MB)

[#003] sha256:dcbf3dc6cdc297270f9734f21696cc5f334b21cf54db579f59b155bc2540fd88 - 3.46% (2.28 MB)

[#004] sha256:012428cc18210d9ee6351a90c1778858b4b5ab114413de689bb7eedb4380d79b - 4.76% (3.13 MB)


History
2021-12-21 01:42:23 UTC

/bin/sh -c #(nop) ADD file:986f91febed4aa8e2072081ff8419d52ba2060510822e717086d3b3d9469e4d7 in /

2021-12-21 01:42:24 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-12-21 08:31:40 UTC

/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates; rm -rf /var/lib/apt/lists/*

2021-12-21 08:31:41 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2021-12-21 08:31:42 UTC

/bin/sh -c #(nop) ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-12-21 08:31:43 UTC

/bin/sh -c #(nop) ENV PYPY_VERSION=7.3.7

2021-12-21 08:32:11 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-linux64.tar.bz2'; sha256='5dee37c7c3cb8b160028fbde3a5901c68043dfa545a16794502b897d4bc40d7e'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-aarch64.tar.bz2'; sha256='cbd44e0a9146b3c03a9d14b265774a848f387ed846316c3e984847e278d0efd3'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-linux32.tar.bz2'; sha256='dfb9d005f0fc917edc60fd618143e4934c412f9168b55166f5519ba0a3b1a835'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.8-v7.3.7-s390x.tar.bz2'; sha256='ae7d6a76490b317a74b87788d596610c7ffd0ae2d3ffa2433d5bb5300f6b4b77'; ;; *) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding PyPy $PYPY_VERSION binary release"; exit 1 ;; esac; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends bzip2 wget libexpat1 libncurses5 libncursesw6 libsqlite3-0 ; wget -O pypy.tar.bz2 "$url" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum --check --strict -; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib* -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; ln -sv '/opt/pypy/bin/pypy3' /usr/local/bin/; pypy3 --version; cd /opt/pypy/lib/pypy3.8; if [ -f _gdbm_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libgdbm-dev; pypy3 _gdbm_build.py; fi; if [ -f _ssl_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libssl-dev; pypy3 _ssl_build.py; fi; if [ -f _lzma_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev liblzma-dev; pypy3 _lzma_build.py; fi; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; find /opt/pypy -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pypy3 --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +

2021-12-21 08:32:11 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py

2021-12-21 08:32:12 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2021-12-21 08:32:26 UTC

/bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends wget; rm -rf /var/lib/apt/lists/*; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum --check --strict -; pipVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._PIP_VERSION)')"; setuptoolsVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._SETUPTOOLS_VERSION)')"; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip == $pipVersion" "setuptools == $setuptoolsVersion" ; apt-get purge -y --auto-remove wget; pip --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2021-12-21 08:32:26 UTC

/bin/sh -c #(nop) CMD ["pypy3"]

2021-12-22 02:46:23 UTC

/bin/sh -c #(nop) ENV HY_VERSION=1.0a3

2021-12-22 02:46:34 UTC

/bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION"

2021-12-22 02:46:35 UTC

/bin/sh -c #(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