Namespace
library
Image / Tag
hylang:pypy3.7-bullseye
Content Digest
sha256:e96f9e29410ef40e85a21265d0e48c7d4805c859a62da150981fcfd1de914274
Details
Created

2022-12-06 19:57:42 UTC

Size

72 MB

Content Digest
Environment
HYRULE_VERSION

0.2.1

HY_VERSION

0.25.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.9

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:01cb95e209fce595702ddb2b5ed266e2a01b6687efe67d201d74a5aee9595995 - 42.92% (30.9 MB)

[#001] sha256:8d94d6ca55160fc7f8b2b78a357a51fd01e31eb115f1e8a952ae510a2238603a - 1.16% (854 KB)

[#002] sha256:417f8aac4e55214870250161c7612bb14e8b7246f49ee50f04eeb617b6c0fc1f - 46.91% (33.8 MB)

[#003] sha256:2a11b924a8e1d3588f0f9a95a140520a5c15b92cc14725c0b37e58bcfa09156f - 3.64% (2.62 MB)

[#004] sha256:83ff7b39946490930d82a84e43433dffe09dd35c74b67db18e6d63879fcae6cd - 5.37% (3.86 MB)


History
2022-12-06 01:39:52 UTC

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

2022-12-06 01:39:52 UTC

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

2022-12-06 15:33: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/*

2022-12-06 15:33:59 UTC

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

2022-12-06 15:34:00 UTC

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

2022-12-06 15:34:01 UTC

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

2022-12-06 15:42:05 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-linux64.tar.bz2'; sha256='c58195124d807ecc527499ee19bc511ed753f4f2e418203ca51bc7e3b124d5d1'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-aarch64.tar.bz2'; sha256='dfc62f2c453fb851d10a1879c6e75c31ffebbf2a44d181bb06fcac4750d023fc'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-linux32.tar.bz2'; sha256='3398cece0167b81baa219c9cd54a549443d8c0a6b553ec8ec13236281e0d86cd'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-s390x.tar.bz2'; sha256='fcab3b9e110379948217cf592229542f53c33bfe881006f95ce30ac815a6df48'; ;; *) 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_pypy; 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 '{}' +

2022-12-06 15:42:06 UTC

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

2022-12-06 15:42:07 UTC

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

2022-12-06 15:42:20 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

2022-12-06 15:42:21 UTC

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

2022-12-06 19:57:00 UTC

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

2022-12-06 19:57:01 UTC

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

2022-12-06 19:57:42 UTC

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

2022-12-06 19:57:42 UTC

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

Details
Created

2022-12-06 23:53:06 UTC

Size

72.3 MB

Content Digest
Environment
HYRULE_VERSION

0.2.1

HY_VERSION

0.25.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.9

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:025c56f98b679f70b7a54241917e56da7b59ab9d2defecc6ebdb0bf2750484bb - 41.43% (30 MB)

[#001] sha256:51466f3f8a8b55ab274f39a90e1dee7c042198a1e3c8c487a2dcb277d863ddf3 - 1.41% (1.02 MB)

[#002] sha256:86c67a4d87346fe9b208d49f963e99199078a7c7471138bdc88efa22533fc1c3 - 47.9% (34.6 MB)

[#003] sha256:e2e640eca4638ab2c5decbfb8ea7fe0f144dd11830865848eb6c3c5a6bf64746 - 3.92% (2.83 MB)

[#004] sha256:1a8687e5dc1e7ab4bb9926983248b4ce8476d4b1dffac36e1c73502b59c22800 - 5.34% (3.87 MB)


History
2022-12-06 01:20:54 UTC

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

2022-12-06 01:20:54 UTC

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

2022-12-06 11:48:29 UTC

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

2022-12-06 11:48:29 UTC

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

2022-12-06 11:48:29 UTC

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

2022-12-06 11:48:29 UTC

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

2022-12-06 11:54:49 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-linux64.tar.bz2'; sha256='c58195124d807ecc527499ee19bc511ed753f4f2e418203ca51bc7e3b124d5d1'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-aarch64.tar.bz2'; sha256='dfc62f2c453fb851d10a1879c6e75c31ffebbf2a44d181bb06fcac4750d023fc'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-linux32.tar.bz2'; sha256='3398cece0167b81baa219c9cd54a549443d8c0a6b553ec8ec13236281e0d86cd'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-s390x.tar.bz2'; sha256='fcab3b9e110379948217cf592229542f53c33bfe881006f95ce30ac815a6df48'; ;; *) 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_pypy; 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 '{}' +

2022-12-06 11:54:49 UTC

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

2022-12-06 11:54:49 UTC

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

2022-12-06 11:55: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

2022-12-06 11:55:01 UTC

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

2022-12-06 23:52:29 UTC

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

2022-12-06 23:52:30 UTC

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

2022-12-06 23:53:06 UTC

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

2022-12-06 23:53:06 UTC

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

Details
Created

2022-12-06 17:48:53 UTC

Size

68.6 MB

Content Digest
Environment
HYRULE_VERSION

0.2.1

HY_VERSION

0.25.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.9

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:6064e7e5b6afa4dc711228eddfd250aebac271830dc184c400ce640020bc2cb0 - 41.76% (28.7 MB)

[#001] sha256:10899d04f0abe7df84b5d209e23478deeda253b78e63b28797c2c513ee13c8b0 - 1.47% (1.01 MB)

[#002] sha256:b56989208b1780ff1b911fdcb1f3c1105e4023bb9011719258fd4607e7c21dfb - 47.01% (32.3 MB)

[#003] sha256:8b5ff02ddbaf0ac8cad138cabb9310781bf8e84510cd6cf0c02783a2292d113b - 4.13% (2.83 MB)

[#004] sha256:a8d9d9dbe810f20d2da7f3043225e152357b667550a734e356861d33792bf436 - 5.63% (3.87 MB)


History
2022-12-06 01:40:17 UTC

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

2022-12-06 01:40:17 UTC

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

2022-12-06 06:41:39 UTC

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

2022-12-06 06:41:39 UTC

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

2022-12-06 06:41:39 UTC

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

2022-12-06 06:41:39 UTC

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

2022-12-06 06:47:13 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-linux64.tar.bz2'; sha256='c58195124d807ecc527499ee19bc511ed753f4f2e418203ca51bc7e3b124d5d1'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-aarch64.tar.bz2'; sha256='dfc62f2c453fb851d10a1879c6e75c31ffebbf2a44d181bb06fcac4750d023fc'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-linux32.tar.bz2'; sha256='3398cece0167b81baa219c9cd54a549443d8c0a6b553ec8ec13236281e0d86cd'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.7-v7.3.9-s390x.tar.bz2'; sha256='fcab3b9e110379948217cf592229542f53c33bfe881006f95ce30ac815a6df48'; ;; *) 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_pypy; 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 '{}' +

2022-12-06 06:47:13 UTC

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

2022-12-06 06:47:13 UTC

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

2022-12-06 06:47:23 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

2022-12-06 06:47:24 UTC

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

2022-12-06 17:48:18 UTC

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

2022-12-06 17:48:18 UTC

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

2022-12-06 17:48:53 UTC

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

2022-12-06 17:48:53 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