Namespace
library
Image / Tag
hylang:0.24.0-pypy3.9-buster
Content Digest
sha256:bbf4cf861cd9ed9499662c111f0de170a900fb365bebcd74479d14a7b3213fa1
Details
Created

2022-10-25 18:09:55 UTC

Size

73.8 MB

Content Digest
Environment
HYRULE_VERSION

0.2

HY_VERSION

0.24.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:32caca2e9abac2a8ffc2b083d202d57e1970d8adc212be17451a992441fad01b - 35.94% (26.5 MB)

[#001] sha256:56140f73aa30fb94247243ac4e209a3c0e1edc09b6c71a20178ce9837efa3fe6 - 3.59% (2.65 MB)

[#002] sha256:fe338b69190bb67d0a3c92c7c26894228cb4c5c303bd006dcc560f2bb81fa9bc - 51.49% (38 MB)

[#003] sha256:bf78471457274cbfe0f698678dd0161594ff4ce5bb0a866eee50c3ac7283283e - 3.82% (2.81 MB)

[#004] sha256:f6c79b09b100eebeaa99012db02a8bb30b7a6121b8875f013a5160a45b02d35a - 5.17% (3.81 MB)


History
2022-10-25 02:23:02 UTC

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

2022-10-25 02:23:02 UTC

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

2022-10-25 10:17:57 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-10-25 10:17:57 UTC

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

2022-10-25 10:17:58 UTC

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

2022-10-25 10:17:59 UTC

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

2022-10-25 10:18:32 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-linux64.tar.bz2'; sha256='46818cb3d74b96b34787548343d266e2562b531ddbaf330383ba930ff1930ed5'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-aarch64.tar.bz2'; sha256='2e1ae193d98bc51439642a7618d521ea019f45b8fb226940f7e334c548d2b4b9'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-linux32.tar.bz2'; sha256='0de4b9501cf28524cdedcff5052deee9ea4630176a512bdc408edfa30914bae7'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-s390x.tar.bz2'; sha256='774dca83bcb4403fb99b3d155e7bd572ef8c52b9fe87a657109f64e75ad71732'; ;; *) 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.9; 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-10-25 10:18:32 UTC

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

2022-10-25 10:18:33 UTC

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

2022-10-25 10:18:48 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-10-25 10:18:49 UTC

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

2022-10-25 18:09:18 UTC

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

2022-10-25 18:09:19 UTC

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

2022-10-25 18:09:55 UTC

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

2022-10-25 18:09:55 UTC

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

Details
Created

2022-10-25 20:04:50 UTC

Size

71.6 MB

Content Digest
Environment
HYRULE_VERSION

0.2

HY_VERSION

0.24.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:4500a762c54620411ae491a547c66b61d577c1369ecbf5a7e91b4e153181854b - 36.13% (25.9 MB)

[#001] sha256:18430058c533991af161a65e3a9459d90db65fd9b126e29dd85b94907dcb9f5b - 3.68% (2.64 MB)

[#002] sha256:cf471862ea41bac5658bd45bbf647c6208389d9e4f7d53b280366078af25dcd3 - 50.65% (36.3 MB)

[#003] sha256:79a6d4def21bc77864a40695cf87e64c7cacd869b846112f016625122d661584 - 4.22% (3.02 MB)

[#004] sha256:49548f7b4eb3cb074beb25afcb2f923737bd626a3b7926d265fbeeaae71c2096 - 5.32% (3.81 MB)


History
2022-10-25 01:44:12 UTC

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

2022-10-25 01:44:12 UTC

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

2022-10-25 04:37:22 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-10-25 04:37:22 UTC

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

2022-10-25 04:37:22 UTC

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

2022-10-25 04:37:22 UTC

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

2022-10-25 04:37:56 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-linux64.tar.bz2'; sha256='46818cb3d74b96b34787548343d266e2562b531ddbaf330383ba930ff1930ed5'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-aarch64.tar.bz2'; sha256='2e1ae193d98bc51439642a7618d521ea019f45b8fb226940f7e334c548d2b4b9'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-linux32.tar.bz2'; sha256='0de4b9501cf28524cdedcff5052deee9ea4630176a512bdc408edfa30914bae7'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-s390x.tar.bz2'; sha256='774dca83bcb4403fb99b3d155e7bd572ef8c52b9fe87a657109f64e75ad71732'; ;; *) 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.9; 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-10-25 04:37:56 UTC

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

2022-10-25 04:37:56 UTC

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

2022-10-25 04:38:09 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-10-25 04:38:09 UTC

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

2022-10-25 20:04:15 UTC

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

2022-10-25 20:04:15 UTC

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

2022-10-25 20:04:49 UTC

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

2022-10-25 20:04:50 UTC

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

Details
Created

2022-10-26 05:32:27 UTC

Size

67.6 MB

Content Digest
Environment
HYRULE_VERSION

0.2

HY_VERSION

0.24.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:5f30c56efde95016859c51bdc10e665dd57dc3c8d22e7abbf384ae9722dfa19e - 36.57% (24.7 MB)

[#001] sha256:f5786fa89de23b3e97290e2d1f540aec191e8adc21b59675865b0f0085dc8c6b - 3.72% (2.51 MB)

[#002] sha256:d55059ec118c9d7cb31c2997479e6cf6b4c4b6959b88ef45b04b4ff30a54afcd - 49.6% (33.5 MB)

[#003] sha256:b381d1a144e33eb34266baadfddc57027896d0fb0114a5a73a8f17dec7fd1f5d - 4.47% (3.02 MB)

[#004] sha256:dfba0c0f9fed3c1fab4174f3f18042da5edbacfe1b2773beb45afe741f16a918 - 5.64% (3.81 MB)


History
2022-10-25 05:46:13 UTC

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

2022-10-25 05:46:14 UTC

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

2022-10-25 20:28:30 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-10-25 20:28:30 UTC

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

2022-10-25 20:28:30 UTC

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

2022-10-25 20:28:30 UTC

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

2022-10-25 20:29:03 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-linux64.tar.bz2'; sha256='46818cb3d74b96b34787548343d266e2562b531ddbaf330383ba930ff1930ed5'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-aarch64.tar.bz2'; sha256='2e1ae193d98bc51439642a7618d521ea019f45b8fb226940f7e334c548d2b4b9'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-linux32.tar.bz2'; sha256='0de4b9501cf28524cdedcff5052deee9ea4630176a512bdc408edfa30914bae7'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.9-v7.3.9-s390x.tar.bz2'; sha256='774dca83bcb4403fb99b3d155e7bd572ef8c52b9fe87a657109f64e75ad71732'; ;; *) 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.9; 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-10-25 20:29:04 UTC

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

2022-10-25 20:29:04 UTC

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

2022-10-25 20:29:16 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-10-25 20:29:16 UTC

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

2022-10-26 05:31:56 UTC

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

2022-10-26 05:31:56 UTC

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

2022-10-26 05:32:27 UTC

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

2022-10-26 05:32:27 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