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

2023-06-15 09:54:32 UTC

Size

71.6 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:1646137eb700afc9e891c03fdf28d3f5bc489ef0200fdacc67beee837d48db7d - 43.18% (30.9 MB)

[#001] sha256:2dda49e22bc3793c8a4d17737043d663e9397fb2b18d81a0f78f34d5eb2ec6ec - 1.44% (1.03 MB)

[#002] sha256:3bb7e8e7dd5104804378f3ef8aa87435ee07275fc7840e17a24b84858bda9157 - 45.58% (32.6 MB)

[#003] sha256:a2117c7788c3ebe4bf163ce7d4b7457a7fa57b74e2e60a7aa40c01ad49d103bc - 4.26% (3.05 MB)

[#004] sha256:fc20c9b8555ae07f65d0fd38f7f8038c867fd3aa6e97cf06a843704b960782c1 - 5.54% (3.96 MB)


History
2023-06-12 23:39:58 UTC

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

2023-06-12 23:39:58 UTC

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

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

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

2023-06-13 13:26:01 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:26:01 UTC

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

2023-06-15 01:35:59 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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | 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-15 01:36:00 UTC

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

2023-06-15 01:36:00 UTC

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

2023-06-15 01:36:13 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-15 01:36:13 UTC

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

2023-06-15 09:53:52 UTC

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

2023-06-15 09:53:52 UTC

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

2023-06-15 09:54:32 UTC

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

2023-06-15 09:54:32 UTC

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

Details
Created

2023-06-15 06:34:23 UTC

Size

72.2 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:759700526b7894aa9c150feb2ebfcd00cf06d2890df739e71555edcfd13669e3 - 41.49% (30 MB)

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

[#002] sha256:dc7783079267560a7905845c7f51b96758d738956c223daf6d587d0bffe16c49 - 47.39% (34.2 MB)

[#003] sha256:c014ddfa7e476de533115aab88cf0442ecea7ed2c79b13e44196bff606e62093 - 4.22% (3.05 MB)

[#004] sha256:765e091c53812d6f150af55e112ed73f74874d58d7325a4222afcd6c40306353 - 5.49% (3.97 MB)


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

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

2023-06-12 23:21:08 UTC

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

2023-06-13 12:58: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/*

2023-06-13 12:58:39 UTC

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

2023-06-13 12:58:39 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 12:58:39 UTC

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

2023-06-14 20:59:46 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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | 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-14 20:59:46 UTC

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

2023-06-14 20:59:46 UTC

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

2023-06-14 20:59:57 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-14 20:59:57 UTC

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

2023-06-15 06:33:50 UTC

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

2023-06-15 06:33:50 UTC

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

2023-06-15 06:34:22 UTC

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

2023-06-15 06:34:23 UTC

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

Details
Created

2023-06-15 07:23:03 UTC

Size

68.6 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:92ad4775570054c645678402c8b75eb489b8e05313c9ccd7867bb591266db4d8 - 41.81% (28.7 MB)

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

[#002] sha256:4c96093496d87c6c27ceb8d430451919770a4a05116f99abf549733505dc2ee8 - 46.49% (31.9 MB)

[#003] sha256:bf095ac96863ddbfcab82187996097b724a686688a05d277d6947e1ed78210b2 - 4.44% (3.05 MB)

[#004] sha256:04df9ae1d0153ac42762f82313147972475b2c387fb257350bfa8a779b89bea7 - 5.78% (3.97 MB)


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

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

2023-06-12 23:40:33 UTC

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

2023-06-13 10:17:55 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:17:55 UTC

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

2023-06-13 10:17:55 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:17:55 UTC

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

2023-06-14 21:42:04 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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | 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-14 21:42:04 UTC

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

2023-06-14 21:42:04 UTC

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

2023-06-14 21:42:15 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-14 21:42:16 UTC

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

2023-06-15 07:22:29 UTC

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

2023-06-15 07:22:29 UTC

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

2023-06-15 07:23:03 UTC

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

2023-06-15 07:23:03 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