Namespace
library
Image / Tag
hylang:0.25.0-pypy3.8-buster
Content Digest
sha256:c1147d0afc730a7aeb6a47270d2985eb6300697154ac9ebcbf023f9b08a6a936
Details
Created

2023-02-05 02:20:11 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.11

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:8e0d975bedf8c90406704c677df48435cd2d53449ac9ab15a876323ceb95ff8f - 36.85% (26.5 MB)

[#001] sha256:0a8ce55d11345ca500467d4c9befa9b330462c0dd05062de9b5891ea5f490554 - 3.69% (2.65 MB)

[#002] sha256:a8514a6f53660da486cd985519c1eba307a8e08a94850e562dc9f64e1a0179a6 - 50.07% (36 MB)

[#003] sha256:2e75cd1fc3a7d99fc5b93e6435ae42e5a021149aae5ba3f59d6b674d9b323f4e - 3.91% (2.81 MB)

[#004] sha256:0fd446b17c177d97e06238bfeaf3626e99caad8abaa4a8228646a82c3db7e87b - 5.49% (3.95 MB)


History
2023-02-04 07:49:48 UTC

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

2023-02-04 07:49:48 UTC

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

2023-02-04 21:53:43 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-02-04 21:53:44 UTC

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

2023-02-04 21:53:45 UTC

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

2023-02-04 21:53:46 UTC

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

2023-02-04 21:57:51 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-02-04 21:57:52 UTC

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

2023-02-04 21:57:52 UTC

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

2023-02-04 21:58:07 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-02-04 21:58:08 UTC

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

2023-02-05 02:19:27 UTC

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

2023-02-05 02:19:28 UTC

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

2023-02-05 02:20:11 UTC

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

2023-02-05 02:20:11 UTC

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

Details
Created

2023-02-05 01:45:18 UTC

Size

70.8 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.11

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:0cf508b37688dca559387b506062329202aaf08b48be5f55f9278b2a818ad2c9 - 36.58% (25.9 MB)

[#001] sha256:0ba671f1ac816666c845833c968d2ab63c176dd097ce3c090a69fbe5e9a4ba5c - 3.73% (2.64 MB)

[#002] sha256:284c44e87d7a00e41e1f466199726acb3ea5b070105ba88f815b68dc52ec3809 - 49.83% (35.3 MB)

[#003] sha256:6f5688b16b51f8c0f140da2fdebdb8488e2991ba147a4742002e4ed4201b8b4d - 4.27% (3.02 MB)

[#004] sha256:e58fd61891e0a661581a0bb611fd75cfec646fbfdfa67491500ac5bfc14c5fca - 5.58% (3.95 MB)


History
2023-02-04 06:52:07 UTC

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

2023-02-04 06:52:07 UTC

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

2023-02-04 10:15:43 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-02-04 10:15:43 UTC

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

2023-02-04 10:15:43 UTC

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

2023-02-04 10:15:43 UTC

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

2023-02-04 10:19:01 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-02-04 10:19:02 UTC

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

2023-02-04 10:19:02 UTC

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

2023-02-04 10:19: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-02-04 10:19:13 UTC

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

2023-02-05 01:44:46 UTC

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

2023-02-05 01:44:46 UTC

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

2023-02-05 01:45:18 UTC

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

2023-02-05 01:45:18 UTC

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

Details
Created

2023-02-05 00:19:19 UTC

Size

66.7 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.11

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:bd2853c1424a5596deda2f31e1f82920613a03c667c3ff58cb461340b7bb89cd - 37.04% (24.7 MB)

[#001] sha256:50c844e8ee853f63cc1ad6fe37e306064a92d0489353cf18937452e8b5d6babc - 3.77% (2.51 MB)

[#002] sha256:8d483e7ea7c7650e7a70ebee8fe48611e6fd8cbce63cb94148193f094ac193c6 - 48.74% (32.5 MB)

[#003] sha256:e463843a326a483d28d7724355dc41e82d162e020c9ac4d38cb5e2c90c602b38 - 4.53% (3.02 MB)

[#004] sha256:1db83ae604d31daeea6bda3aa0a974912b296285c91c5a598b6e253664128603 - 5.92% (3.95 MB)


History
2023-02-04 06:17:54 UTC

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

2023-02-04 06:17:55 UTC

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

2023-02-04 13:32:38 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-02-04 13:32:38 UTC

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

2023-02-04 13:32:38 UTC

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

2023-02-04 13:32:38 UTC

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

2023-02-04 13:35:21 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-02-04 13:35:22 UTC

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

2023-02-04 13:35:22 UTC

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

2023-02-04 13:35:33 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-02-04 13:35:33 UTC

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

2023-02-05 00:18:47 UTC

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

2023-02-05 00:18:47 UTC

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

2023-02-05 00:19:19 UTC

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

2023-02-05 00:19:19 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