2024-07-10 23:46:02 UTC
64.7 MB
0.6.0
HY_VERSION0.29.0
LANGC.UTF-8
PATH/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYPY_VERSION7.3.16
PYTHON_GET_PIP_SHA25695c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
[#000] sha256:82c8eed510ac33a6df3a546a738b1f3806df7958ea977484d0f77eabe177108d - 44.45% (28.7 MB)
[#001] sha256:f00710f580b19793a6e351fb0888f41913664825e9f791ccda0f6f4183aa1bd7 - 5.16% (3.34 MB)
[#002] sha256:d0524cd248bf517852cc70ceb148e92ef27ebc49d813afd399c7dc71abd58aec - 40.24% (26 MB)
[#003] sha256:53c97d4809129827ff3deef16104a0a36448b7eb7699bf823e89a4b4437002e8 - 4.3% (2.78 MB)
[#004] sha256:f0350c3da4f397354e6d8c3cab5d33fe395b4c546c7b311bb7afad4f67716d8b - 5.86% (3.79 MB)
/bin/sh -c #(nop) ADD file:6c928b979f82a9dc0b3801b97a516aaa3d17fe57cb9eecc077d202afda56d2fb in /
2024-04-24 04:28:19 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PYPY_VERSION=7.3.16
2024-04-24 04:28:19 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.9-v7.3.16-linux64.tar.bz2'; sha256='16f9c5b808c848516e742986e826b833cdbeda09ad8764e8704595adbe791b23'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-aarch64.tar.bz2'; sha256='de3f2ed3581b30555ac0dd3e4df78a262ec736a36fb2e8f28259f8539b278ef4'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux32.tar.bz2'; sha256='583b6d6dd4e8c07cbc04da04a7ec2bdfa6674825289c2378c5e018d5abe779ea'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-s390x.tar.bz2'; sha256='7a56ebb27dba3110dc1ff52d8e0449cdb37fe5c2275f7faf11432e4e164833ba'; ;; *) 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 '/=>/ { 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)CMD ["pypy3"]
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)ENV HY_VERSION=0.29.0
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)ENV HYRULE_VERSION=0.6.0
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION" # buildkit
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)CMD ["hy"]
2024-07-10 23:46:02 UTC
67.1 MB
0.6.0
HY_VERSION0.29.0
LANGC.UTF-8
PATH/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYPY_VERSION7.3.16
PYTHON_GET_PIP_SHA25695c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
[#000] sha256:e4fff0779e6ddd22366469f08626c3ab1884b5cbe1719b26da238c95f247b305 - 41.38% (27.8 MB)
[#001] sha256:7cad3d9de1d9f3690a29c4b4aeb85c5a99bb95e8030d422a5192dc4e3f765dcb - 4.97% (3.33 MB)
[#002] sha256:847a40bd2b7cbfa7c15037e2407522d72122990a6fbe9ad0ad6d30e58a568006 - 43.87% (29.4 MB)
[#003] sha256:3181ad03d17d06dd9b078aef871424766c7fc387a4deac675174142b8b6c5468 - 4.14% (2.78 MB)
[#004] sha256:ea1e848a51f34fb25a59657c01708412802391e39a24ecf7544b4ce4a2640ece - 5.64% (3.79 MB)
/bin/sh -c #(nop) ADD file:3d9897cfe027ecc7cbdb16e74a676ed143725ea2d08dbb0dde23309e041de0f3 in /
2024-04-24 04:28:19 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PYPY_VERSION=7.3.16
2024-04-24 04:28:19 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.9-v7.3.16-linux64.tar.bz2'; sha256='16f9c5b808c848516e742986e826b833cdbeda09ad8764e8704595adbe791b23'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-aarch64.tar.bz2'; sha256='de3f2ed3581b30555ac0dd3e4df78a262ec736a36fb2e8f28259f8539b278ef4'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux32.tar.bz2'; sha256='583b6d6dd4e8c07cbc04da04a7ec2bdfa6674825289c2378c5e018d5abe779ea'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-s390x.tar.bz2'; sha256='7a56ebb27dba3110dc1ff52d8e0449cdb37fe5c2275f7faf11432e4e164833ba'; ;; *) 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 '/=>/ { 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)CMD ["pypy3"]
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)ENV HY_VERSION=0.29.0
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)ENV HYRULE_VERSION=0.6.0
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION" # buildkit
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)CMD ["hy"]
2024-07-10 23:46:02 UTC
65.4 MB
0.6.0
HY_VERSION0.29.0
LANGC.UTF-8
PATH/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYPY_VERSION7.3.16
PYTHON_GET_PIP_SHA25695c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
[#000] sha256:aa6fbc30c84e14e64571d3d7b547ea801dfca8a7bd74bd930b5ea5de3eb2f442 - 42.54% (27.8 MB)
[#001] sha256:000bf819597d07f78e3af4ee76a4c469f4fb277c507b774c8c6564988ea2bce6 - 4.84% (3.17 MB)
[#002] sha256:748cac4540485c9026a38ad47cab892287887f05c36fcc5f944dffccc4fd26da - 42.57% (27.8 MB)
[#003] sha256:16327107e5b0aeac3d50688be99629e85698b507a4da86f0320b65ff0147ba86 - 4.25% (2.78 MB)
[#004] sha256:74cf0ce6c8ad5bd0721aba0c939551a30349bdd1bf63712f7b562ac0512eb212 - 5.79% (3.79 MB)
/bin/sh -c #(nop) ADD file:4aa9ddc52f046592777767c91a04b9490d98811bedb8980fca794d55bbad1a0f in /
2024-04-24 04:28:19 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PYPY_VERSION=7.3.16
2024-04-24 04:28:19 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.9-v7.3.16-linux64.tar.bz2'; sha256='16f9c5b808c848516e742986e826b833cdbeda09ad8764e8704595adbe791b23'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-aarch64.tar.bz2'; sha256='de3f2ed3581b30555ac0dd3e4df78a262ec736a36fb2e8f28259f8539b278ef4'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux32.tar.bz2'; sha256='583b6d6dd4e8c07cbc04da04a7ec2bdfa6674825289c2378c5e018d5abe779ea'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-s390x.tar.bz2'; sha256='7a56ebb27dba3110dc1ff52d8e0449cdb37fe5c2275f7faf11432e4e164833ba'; ;; *) 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 '/=>/ { 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)CMD ["pypy3"]
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)ENV HY_VERSION=0.29.0
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)ENV HYRULE_VERSION=0.6.0
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION" # buildkit
2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)CMD ["hy"]
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.