2024-01-05 23:20:01 UTC
64.5 MB
0.5.0
HY_VERSION0.28.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:7075ead1c5d56dc11510b76b25c291657dc73ecf7daad5361939429487745b9a - 44.61% (28.8 MB)
[#001] sha256:61d6073854f0897424edcb3cbcd0b1f5e1e30323a85521f3f6978d4ac76552ed - 4.89% (3.15 MB)
[#002] sha256:c77c5836676846ab6066adc4c4a27e2e43a2dea3a6a5ef2a408b2208ff543d3c - 40.36% (26 MB)
[#003] sha256:613b4b20d6d332d53008501579b087d3f29838f7e339cf5148e26e08f6ca0368 - 4.31% (2.78 MB)
[#004] sha256:229ec15a7c595e5a4022deea0c77270ccaa9e55ec0f42b79e221153a9b47915a - 5.84% (3.76 MB)
/bin/sh -c #(nop) ADD file:252f04703c9ed01e5aa32f764c7d751f0a3b17ed9ef1961cd1972aa8453b5cf3 in /
2024-01-05 23:20:01 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PYPY_VERSION=7.3.16
2024-01-05 23:20: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.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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)CMD ["pypy3"]
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV HY_VERSION=0.28.0
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV HYRULE_VERSION=0.5.0
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION" # buildkit
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)CMD ["hy"]
2024-01-05 23:20:01 UTC
66.9 MB
0.5.0
HY_VERSION0.28.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:09f376ebb190216b0459f470e71bec7b5dfa611d66bf008492b40dcc5f1d8eae - 41.53% (27.8 MB)
[#001] sha256:ad2527f7d044e9788a6e15a97527f04a98feb0471b82e5b875ac21f6c2d9f4d5 - 4.7% (3.15 MB)
[#002] sha256:6789e61ae0b8b2471019a5c9874016ab24a9da4fa14b54787a2b41aa6578e405 - 44.0% (29.4 MB)
[#003] sha256:54fd916abe7df00c4efddf295c57ff16113f007cb2a222056fdfc13e24c9f409 - 4.15% (2.78 MB)
[#004] sha256:a0fba1020378fde5947c34207e4c2e3f7c9c01e2270dbc524722f911fbd75415 - 5.62% (3.76 MB)
/bin/sh -c #(nop) ADD file:5aaace706aa00ff97d243daa2c29f5de88f124e1b97c570634f16eef90783286 in /
2024-01-05 23:20:01 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PYPY_VERSION=7.3.16
2024-01-05 23:20: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.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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)CMD ["pypy3"]
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV HY_VERSION=0.28.0
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV HYRULE_VERSION=0.5.0
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION" # buildkit
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)CMD ["hy"]
2024-01-05 23:20:01 UTC
65.2 MB
0.5.0
HY_VERSION0.28.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:24c63b8dcb66721062f32b893ef1027404afddd62aade87f3f39a3a6e70a74d0 - 42.7% (27.8 MB)
[#001] sha256:6ebba9fcf0829b00b492e3be46bb468a649cb06425ce6aded790731d798f9f52 - 4.57% (2.98 MB)
[#002] sha256:8fc066eb40af25354dd4796332faa34c417f4550e9a9460a02e131887c8abc07 - 42.69% (27.8 MB)
[#003] sha256:35aefcf7421cc751d2b8de3e18012fa7710a114c028164da321ddff7eb65a0c9 - 4.26% (2.78 MB)
[#004] sha256:e442c211bf3dae561f91e5ed77c5ccd151e37e8d763bede6e0f31e448df5949e - 5.77% (3.76 MB)
/bin/sh -c #(nop) ADD file:e23ba17afc7850bcca9e73ba5022db9f0a80c6a0250585fd3f50a1960226474b in /
2024-01-05 23:20:01 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PYPY_VERSION=7.3.16
2024-01-05 23:20: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.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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)CMD ["pypy3"]
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV HY_VERSION=0.28.0
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)ENV HYRULE_VERSION=0.5.0
2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION" # buildkit
2024-01-05 23:20:01 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.