Namespace
library
Image / Tag
hylang:0.29-pypy-bookworm
Content Digest
sha256:2381c05d1d3e68073844e7c8ab17841ec7b52384a147d419b96673a09c2e52e9
Details
Created

2024-09-11 00:07:32 UTC

Size

67 MB

Content Digest
Environment
HYRULE_VERSION

0.6.0

HY_VERSION

0.29.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.17

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:c304282df09b425e8240f53c55110ac282ba801da157a805e4fdbdf8c832b376 - 42.92% (28.7 MB)

[#001] sha256:1074bd9f27455227cf67fd6f241ebaee8db0785c99f2bf79e2db4651ba5bcbaf - 4.99% (3.34 MB)

[#002] sha256:0b6f6b56c67e6d3554e6393d2189187804ef4420b5f89c7a5251965244149e1a - 38.37% (25.7 MB)

[#003] sha256:543230f8b9baded6705cc6eb2ff88440829ff693bea0f778afe2dfbe288075aa - 4.7% (3.15 MB)

[#004] sha256:e351ab8306e723c2e96f32dbb590cf03b88406cbd66c8b5ae31ce311ad6b8790 - 9.02% (6.04 MB)


History
2024-08-28 10:12:01 UTC

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

2024-08-28 10:12:01 UTC

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

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

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

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.17

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux64.tar.bz2'; sha256='fdcdb9b24f1a7726003586503fdeb264fd68fc37fbfcea022dcfe825a7fee18b'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-aarch64.tar.bz2'; sha256='53b6e5907df869c49e4eae7aca09fba16d150741097efb245892c1477d2395f2'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux32.tar.bz2'; sha256='e534110e1047da37c1d586c392f74de3424f871d906a2083de6d41f2a8cc9164'; ;; *) 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.10; 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); printf "*%s\n", 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 '{}' + # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

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

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /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 # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.29.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.6.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

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

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

CMD ["hy"]

Details
Created

2024-09-11 00:07:32 UTC

Size

69.5 MB

Content Digest
Environment
HYRULE_VERSION

0.6.0

HY_VERSION

0.29.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.17

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:a2318d6c47ec9cac5acc500c47c79602bcf953cec711a18bc898911a0984365b - 39.98% (27.8 MB)

[#001] sha256:5b5629df2df3739958df630c743a14b6f1558488fba767451d8ad3b381d51cfb - 4.8% (3.34 MB)

[#002] sha256:a5b8aba5bf71677484e0cf0d22eca5df59491162ee212e3d41b134e2181ae922 - 41.99% (29.2 MB)

[#003] sha256:82df1c8312b7662b5d5c16c92c5b8eff08ace963bf8a510dae3755b1f6b2dc31 - 4.53% (3.15 MB)

[#004] sha256:566e8dcaa567fe67718c84dbd359e73a784e99208aa425b2060f7bf6a47e540a - 8.7% (6.04 MB)


History
2024-08-28 10:12:01 UTC

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

2024-08-28 10:12:01 UTC

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

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

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

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.17

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux64.tar.bz2'; sha256='fdcdb9b24f1a7726003586503fdeb264fd68fc37fbfcea022dcfe825a7fee18b'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-aarch64.tar.bz2'; sha256='53b6e5907df869c49e4eae7aca09fba16d150741097efb245892c1477d2395f2'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux32.tar.bz2'; sha256='e534110e1047da37c1d586c392f74de3424f871d906a2083de6d41f2a8cc9164'; ;; *) 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.10; 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); printf "*%s\n", 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 '{}' + # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

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

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /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 # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.29.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.6.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

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

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

CMD ["hy"]

Details
Created

2024-09-11 00:07:32 UTC

Size

67.8 MB

Content Digest
Environment
HYRULE_VERSION

0.6.0

HY_VERSION

0.29.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.17

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:92c3b3500be621c72c7ac6432a9d8f731f145f4a1535361ffd3a304e55f7ccda - 41.03% (27.8 MB)

[#001] sha256:89ed8cf8b863a96ea1c670eb011e3e447b82f9a1b376a428f7e41ba6ce3522c9 - 4.68% (3.17 MB)

[#002] sha256:faf01acff4355e4960de113e4d9ad6c3917bb1ed1e75b38bab834fd05c705aad - 40.73% (27.6 MB)

[#003] sha256:d66cef4ac41dbbd476a6b560e941b7a1fd203ec00aad50735d9b1603af36d902 - 4.65% (3.15 MB)

[#004] sha256:0f675fd682ffca6771cd34549ffe48ee8a2432f7e876d803b599df670ed2a6d3 - 8.92% (6.04 MB)


History
2024-08-28 10:12:01 UTC

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

2024-08-28 10:12:01 UTC

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

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

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

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.17

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux64.tar.bz2'; sha256='fdcdb9b24f1a7726003586503fdeb264fd68fc37fbfcea022dcfe825a7fee18b'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-aarch64.tar.bz2'; sha256='53b6e5907df869c49e4eae7aca09fba16d150741097efb245892c1477d2395f2'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux32.tar.bz2'; sha256='e534110e1047da37c1d586c392f74de3424f871d906a2083de6d41f2a8cc9164'; ;; *) 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.10; 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); printf "*%s\n", 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 '{}' + # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

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

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /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 # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.29.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.6.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

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

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

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