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

2022-10-25 18:10:43 UTC

Size

72.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:3c83067056c0f1bc4e162249831ac686f3a9a9c64c5366b903581580de8fcac2 - 42.58% (30.9 MB)

[#001] sha256:e8f34ad0e38cd30386eb11e3298ac0c8eaabc036bcba30d5a2a9d44f330d34c1 - 1.15% (854 KB)

[#002] sha256:fa237cd7059fbe086ad590a8ba26d12722c5df20da3655d9ff8b34e7fdd77e80 - 47.16% (34.2 MB)

[#003] sha256:3109b85e2224b7ea7bea03f89698a631b250c0c566dd923252b6cf3120b34658 - 3.88% (2.81 MB)

[#004] sha256:dd89ea85cf6e43c17c8607cc02c098808e9cfe3679fbd3387842db5ab2c60d5b - 5.23% (3.8 MB)


History
2022-10-25 02:22:34 UTC

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

2022-10-25 02:22:35 UTC

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

2022-10-25 10:15:51 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:15:52 UTC

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

2022-10-25 10:15:53 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:15:54 UTC

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

2022-10-25 10:20: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.9-linux64.tar.bz2'; sha256='08be25ec82fc5d23b78563eda144923517daba481a90af0ace7a047c9c9a3c34'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-aarch64.tar.bz2'; sha256='5e124455e207425e80731dff317f0432fa0aba1f025845ffca813770e2447e32'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-linux32.tar.bz2'; sha256='4b261516c6c59078ab0c8bd7207327a1b97057b4ec1714ed5e79a026f9efd492'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-s390x.tar.bz2'; sha256='c6177a0016c9145c7b99fddb5d74cc2e518ccdb216a6deb51ef6a377510cc930'; ;; *) 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 '{}' +

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

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

2022-10-25 10:20:41 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:20:42 UTC

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

2022-10-25 18:10:02 UTC

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

2022-10-25 18:10:03 UTC

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

2022-10-25 18:10:42 UTC

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

2022-10-25 18:10:43 UTC

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

Details
Created

2022-10-25 20:05:33 UTC

Size

72.9 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:e9995326b091af7b3ce352fad4d76cf3a3cb62b7a0c35cc5f625e8e649d23c50 - 41.11% (30 MB)

[#001] sha256:85d58b5273cfc0600ec4a363e652eb7df8e0c339f32d76b896b2de59d1eff124 - 1.4% (1.02 MB)

[#002] sha256:caeeb365def8f3004c365639408e3275f96998f06fb8098b982fafba392adea2 - 48.13% (35.1 MB)

[#003] sha256:bb64325b5687c5631c9353e725481523b3ceeab6fc8cacef24b82d416273d29f - 4.15% (3.02 MB)

[#004] sha256:277c2e01dfc43fe2acea8026e4a9bf29f3120435f354c2166a9d0d8ef17d7478 - 5.21% (3.8 MB)


History
2022-10-25 01:43:53 UTC

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

2022-10-25 01:43:53 UTC

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

2022-10-25 04:36:21 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:36:21 UTC

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

2022-10-25 04:36:21 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:36:21 UTC

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

2022-10-25 04:38:49 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-linux64.tar.bz2'; sha256='08be25ec82fc5d23b78563eda144923517daba481a90af0ace7a047c9c9a3c34'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-aarch64.tar.bz2'; sha256='5e124455e207425e80731dff317f0432fa0aba1f025845ffca813770e2447e32'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-linux32.tar.bz2'; sha256='4b261516c6c59078ab0c8bd7207327a1b97057b4ec1714ed5e79a026f9efd492'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-s390x.tar.bz2'; sha256='c6177a0016c9145c7b99fddb5d74cc2e518ccdb216a6deb51ef6a377510cc930'; ;; *) 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 '{}' +

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

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

2022-10-25 04:39:02 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:39:02 UTC

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

2022-10-25 20:04:55 UTC

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

2022-10-25 20:04:56 UTC

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

2022-10-25 20:05:32 UTC

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

2022-10-25 20:05:33 UTC

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

Details
Created

2022-10-26 05:33:03 UTC

Size

69.2 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:dd6189d6fc13cb03db0f4a3d9659b6b6044fd5858019d659001eaf8367584d67 - 41.42% (28.7 MB)

[#001] sha256:f92a2ce4d9830d742edd49bff0dc208f951062ab3aedabab97b35df86be985c4 - 1.45% (1.01 MB)

[#002] sha256:231e1c6455fe7244bcfbba565d1ff40c1985391beed05bc8393fcb3482d40592 - 47.27% (32.7 MB)

[#003] sha256:d517253dbfb189950cf7c87e4ac1c4727687885081daa60c6f05cbe4fe5d1131 - 4.37% (3.02 MB)

[#004] sha256:0c6e34299d69b226978d56ec0808cd66f4836d14d1f5bd429648be6fd1d5a546 - 5.49% (3.8 MB)


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

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

2022-10-25 05:46:03 UTC

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

2022-10-25 20:27: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/*

2022-10-25 20:27:01 UTC

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

2022-10-25 20:27:01 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:27:01 UTC

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

2022-10-25 20:30:17 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-linux64.tar.bz2'; sha256='08be25ec82fc5d23b78563eda144923517daba481a90af0ace7a047c9c9a3c34'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-aarch64.tar.bz2'; sha256='5e124455e207425e80731dff317f0432fa0aba1f025845ffca813770e2447e32'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-linux32.tar.bz2'; sha256='4b261516c6c59078ab0c8bd7207327a1b97057b4ec1714ed5e79a026f9efd492'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.8-v7.3.9-s390x.tar.bz2'; sha256='c6177a0016c9145c7b99fddb5d74cc2e518ccdb216a6deb51ef6a377510cc930'; ;; *) 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 '{}' +

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

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

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

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

2022-10-26 05:32:30 UTC

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

2022-10-26 05:32:30 UTC

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

2022-10-26 05:33:03 UTC

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

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