Namespace
library
Image / Tag
hylang:0.26-pypy3.8-buster
Content Digest
sha256:0ff191236b34dd355802450d661f0a2873a7f8c540eb0a808b858c665a17fbbf
Details
Created

2023-06-14 01:01:04 UTC

Size

72.4 MB

Content Digest
Environment
HYRULE_VERSION

0.3.0

HY_VERSION

0.26.0

LANG

C.UTF-8

PATH

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

PYPY_VERSION

7.3.11

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:e3832d1e9e7d28b937b10dcb945a700a76b4e3e7cde251e8eff22782e1fa2a55 - 36.62% (26.5 MB)

[#001] sha256:3b417f6a0137b3934e6cf86ce56a64c163c5e7a8f21dfd5fcddd78eb9d07a9c4 - 3.66% (2.65 MB)

[#002] sha256:662502efb2b0036772388989c3e1c6737a40d35cd2c5c550314d6e66dea2f888 - 50.04% (36.2 MB)

[#003] sha256:7c6b47d4f14eeae379051748690db4089b1bc3526c7b3511e4d05a4ecb85631b - 4.2% (3.04 MB)

[#004] sha256:ed62a33f3ba617dd0770b05bcd5e73f7528ffbe822995c97f9688f8ed098b7fc - 5.48% (3.97 MB)


History
2023-06-12 23:40:35 UTC

/bin/sh -c #(nop) ADD file:89de6b7378fdf61514133b7bd1ed23bb24397ce045566a30fee2a1347bf6587f in /

2023-06-12 23:40:36 UTC

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

2023-06-13 13:27:58 UTC

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

2023-06-13 13:27:59 UTC

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

2023-06-13 13:27:59 UTC

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

2023-06-13 13:27:59 UTC

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

2023-06-13 13:31:45 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-linux64.tar.bz2'; sha256='470330e58ac105c094041aa07bb05676b06292bc61409e26f5c5593ebb2292d9'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-aarch64.tar.bz2'; sha256='9a2fa0b8d92b7830aa31774a9a76129b0ff81afbd22cd5c41fbdd9119e859f55'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-linux32.tar.bz2'; sha256='a79b31fce8f5bc1f9940b6777134189a1d3d18bda4b1c830384cda90077c9176'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-s390x.tar.bz2'; sha256='eab7734d86d96549866f1cba67f4f9c73c989f6a802248beebc504080d4c3fcd'; ;; *) 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; if [ -f _sqlite3_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libsqlite3-dev; pypy3 _sqlite3_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 '{}' +

2023-06-13 13:31:46 UTC

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

2023-06-13 13:31:46 UTC

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

2023-06-13 13:32:00 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

2023-06-13 13:32:00 UTC

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

2023-06-14 01:00:24 UTC

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

2023-06-14 01:00:24 UTC

/bin/sh -c #(nop) ENV HYRULE_VERSION=0.3.0

2023-06-14 01:01:04 UTC

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

2023-06-14 01:01:04 UTC

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

Details
Created

2023-06-13 23:10:04 UTC

Size

70.8 MB

Content Digest
Environment
HYRULE_VERSION

0.3.0

HY_VERSION

0.26.0

LANG

C.UTF-8

PATH

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

PYPY_VERSION

7.3.11

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:8b91b88d557765cd8c6802668755a3f6dc4337b6ce15a17e4857139e5fc964f3 - 36.56% (25.9 MB)

[#001] sha256:1357c5038e4f3e7f48bb0a1eeb487071b7cd2626433d2dce63c5a33c4a762771 - 3.73% (2.64 MB)

[#002] sha256:844e2b84bb265b333e696b92eb90954a6761101a67f92fae42cb787f4fd51caf - 49.81% (35.3 MB)

[#003] sha256:4f05a7c0bf8cbf3a5528255ced48205fbc27a0e3fd2c547a2b8a3b9da95951cc - 4.3% (3.04 MB)

[#004] sha256:bd834241c322612a99dc04129b3b8f3bd004a81d8d7c2af7869d58d326a2028c - 5.6% (3.97 MB)


History
2023-06-12 23:21:32 UTC

/bin/sh -c #(nop) ADD file:2818e508d01da2188fb234b38fb19aa1ea9eeeae92d361ecdf49318d949f51a9 in /

2023-06-12 23:21:32 UTC

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

2023-06-13 13:00:19 UTC

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

2023-06-13 13:00:19 UTC

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

2023-06-13 13:00:20 UTC

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

2023-06-13 13:00:20 UTC

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

2023-06-13 13:03:25 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-linux64.tar.bz2'; sha256='470330e58ac105c094041aa07bb05676b06292bc61409e26f5c5593ebb2292d9'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-aarch64.tar.bz2'; sha256='9a2fa0b8d92b7830aa31774a9a76129b0ff81afbd22cd5c41fbdd9119e859f55'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-linux32.tar.bz2'; sha256='a79b31fce8f5bc1f9940b6777134189a1d3d18bda4b1c830384cda90077c9176'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-s390x.tar.bz2'; sha256='eab7734d86d96549866f1cba67f4f9c73c989f6a802248beebc504080d4c3fcd'; ;; *) 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; if [ -f _sqlite3_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libsqlite3-dev; pypy3 _sqlite3_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 '{}' +

2023-06-13 13:03:25 UTC

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

2023-06-13 13:03:25 UTC

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

2023-06-13 13:03:37 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

2023-06-13 13:03:37 UTC

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

2023-06-13 23:09:31 UTC

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

2023-06-13 23:09:31 UTC

/bin/sh -c #(nop) ENV HYRULE_VERSION=0.3.0

2023-06-13 23:10:04 UTC

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

2023-06-13 23:10:04 UTC

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

Details
Created

2023-06-13 21:33:58 UTC

Size

66.8 MB

Content Digest
Environment
HYRULE_VERSION

0.3.0

HY_VERSION

0.26.0

LANG

C.UTF-8

PATH

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

PYPY_VERSION

7.3.11

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:d191be7a3c9fa95847a482db8211b6f85b45096c7817fdad4d7661ee7ff1a421 - 37.02% (24.7 MB)

[#001] sha256:37410a8b9170252b5374a141ca139ced2b33dd752151ddc71d07d66e9fdc7bc0 - 3.77% (2.51 MB)

[#002] sha256:4caa10aae83ccc0a3ee713515f24b9d5f8c8d4a82ced31048194507bcf13a029 - 48.72% (32.5 MB)

[#003] sha256:96dd6d5f0fc5a3bd2cf3de3d5b70185726d2e16c355e43cd9243ba59aa8f7f57 - 4.56% (3.04 MB)

[#004] sha256:1b3932f27f3439b1d57f95933e2b59acd5ee87a3839f88df84be11e88aa2ed8e - 5.94% (3.97 MB)


History
2023-06-12 23:40:52 UTC

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

2023-06-12 23:40:52 UTC

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

2023-06-13 10:19: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/*

2023-06-13 10:19:24 UTC

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

2023-06-13 10:19:24 UTC

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

2023-06-13 10:19:24 UTC

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

2023-06-13 10:22:07 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-linux64.tar.bz2'; sha256='470330e58ac105c094041aa07bb05676b06292bc61409e26f5c5593ebb2292d9'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-aarch64.tar.bz2'; sha256='9a2fa0b8d92b7830aa31774a9a76129b0ff81afbd22cd5c41fbdd9119e859f55'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-linux32.tar.bz2'; sha256='a79b31fce8f5bc1f9940b6777134189a1d3d18bda4b1c830384cda90077c9176'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.8-v7.3.11-s390x.tar.bz2'; sha256='eab7734d86d96549866f1cba67f4f9c73c989f6a802248beebc504080d4c3fcd'; ;; *) 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; if [ -f _sqlite3_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libsqlite3-dev; pypy3 _sqlite3_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 '{}' +

2023-06-13 10:22:07 UTC

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

2023-06-13 10:22:07 UTC

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

2023-06-13 10:22:19 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

2023-06-13 10:22:19 UTC

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

2023-06-13 21:33:25 UTC

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

2023-06-13 21:33:25 UTC

/bin/sh -c #(nop) ENV HYRULE_VERSION=0.3.0

2023-06-13 21:33:58 UTC

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

2023-06-13 21:33:58 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