2023-02-05 02:19:19 UTC
71.1 MB
0.2.1
HY_VERSION0.25.0
LANGC.UTF-8
PATH/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYPY_VERSION7.3.11
PYTHON_GET_PIP_SHA25695c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
[#000] sha256:fb99e0a97d653ef9acb2bdac0d1d10a8655b789bd4e8924c4a1c4a2af8adbb4a - 43.44% (30.9 MB)
[#001] sha256:f691486b509c1df658bbbc95b2f405b7e13a551c3578fc7d3f1058a35470b74d - 1.45% (1.03 MB)
[#002] sha256:5932d5357370ea66b0ccc58c857fd60c8364edded03f1a8081a417347ff89dd7 - 45.6% (32.4 MB)
[#003] sha256:518e506456a94d3f9b36aafa9f463f14995fc9cbc82d20821895909351dca95f - 3.96% (2.81 MB)
[#004] sha256:86e2bcfd6f2ea76eb6627a5bcedcce3cb323570a137dfd52628f046699e5b626 - 5.56% (3.95 MB)
/bin/sh -c #(nop) ADD file:82af884aad6a87f5b309a7418aa1df69f92180a39818ae6d77d37d072cb6fecb in /
2023-02-04 07:49:22 UTC/bin/sh -c #(nop) CMD ["bash"]
2023-02-04 21:51: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 21:51:39 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2023-02-04 21:51:40 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:51:41 UTC/bin/sh -c #(nop) ENV PYPY_VERSION=7.3.11
2023-02-04 21:56:07 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:56:08 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:56:09 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
2023-02-04 21:56:24 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:56:25 UTC/bin/sh -c #(nop) CMD ["pypy3"]
2023-02-05 02:18:36 UTC/bin/sh -c #(nop) ENV HY_VERSION=0.25.0
2023-02-05 02:18:36 UTC/bin/sh -c #(nop) ENV HYRULE_VERSION=0.2.1
2023-02-05 02:19:18 UTC/bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION"
2023-02-05 02:19:19 UTC/bin/sh -c #(nop) CMD ["hy"]
2023-02-05 01:44:37 UTC
72.2 MB
0.2.1
HY_VERSION0.25.0
LANGC.UTF-8
PATH/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYPY_VERSION7.3.11
PYTHON_GET_PIP_SHA25695c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
[#000] sha256:01b5b2efb836d74b8b49da819514eca52e25290d1688db59420ffb9c6b65a03c - 41.49% (29.9 MB)
[#001] sha256:29b11e0b6bc0df3479428b6d6c71c16a9a05e94050fad9a222b4ca4746af187e - 1.41% (1.02 MB)
[#002] sha256:8479cf02d249ddd8f5739fc4da473d1b4b3d55f3f1adbaae7fdda5e38687d149 - 47.43% (34.2 MB)
[#003] sha256:f3cefdd1200e1d5369bddf7ba144e81dcf05cab7bb8f77d2e8dd5801af724731 - 4.19% (3.02 MB)
[#004] sha256:82f95af778e5b51d37838b3da3de0b866deb5c35d5b42becf84a106f4420cb0b - 5.47% (3.95 MB)
/bin/sh -c #(nop) ADD file:1d256392bb7afe6942d157db84ca62774ac4114f8a3816fd50bace8d73130b57 in /
2023-02-04 06:51:41 UTC/bin/sh -c #(nop) CMD ["bash"]
2023-02-04 10:14:03 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:14:03 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2023-02-04 10:14:04 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:14:04 UTC/bin/sh -c #(nop) ENV PYPY_VERSION=7.3.11
2023-02-04 10:17:39 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:17:40 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:17:40 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
2023-02-04 10:17:50 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:17:51 UTC/bin/sh -c #(nop) CMD ["pypy3"]
2023-02-05 01:44:05 UTC/bin/sh -c #(nop) ENV HY_VERSION=0.25.0
2023-02-05 01:44:05 UTC/bin/sh -c #(nop) ENV HYRULE_VERSION=0.2.1
2023-02-05 01:44:37 UTC/bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION"
2023-02-05 01:44:37 UTC/bin/sh -c #(nop) CMD ["hy"]
2023-02-05 00:18:39 UTC
68.5 MB
0.2.1
HY_VERSION0.25.0
LANGC.UTF-8
PATH/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYPY_VERSION7.3.11
PYTHON_GET_PIP_SHA25695c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py
[#000] sha256:f79f8cc5c20d534298dd6317333f38b7691da6d66e063ff10699727982c852be - 41.82% (28.7 MB)
[#001] sha256:b94d355ce69d649276dc220c3dfad9c0be5263fbc905a47c71e5cb93b76e493f - 1.47% (1.01 MB)
[#002] sha256:2cb09525e82b4d6164b6f4ca044676d926e46aba67ea6a681e519a133ab726fa - 46.53% (31.9 MB)
[#003] sha256:b0d3a012cf34d92ddc1a37a4e28d2075586ea5af2dc3ee7067ecb7ae4b2d377b - 4.41% (3.02 MB)
[#004] sha256:ba8d76bca7ffccf1b12a9a1efb27a6298a4e62e62607bd6bff5fa14d10dc0fae - 5.76% (3.95 MB)
/bin/sh -c #(nop) ADD file:f613775c59ebd3ca219dc6bbad83115eb74bbbc1980ca4b63e7cb8ab3fa364e4 in /
2023-02-04 06:17:37 UTC/bin/sh -c #(nop) CMD ["bash"]
2023-02-04 13:31:09 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:31:09 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2023-02-04 13:31:09 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:31:09 UTC/bin/sh -c #(nop) ENV PYPY_VERSION=7.3.11
2023-02-04 13:34:13 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:34:14 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:34:14 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218
2023-02-04 13:34:25 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:34:25 UTC/bin/sh -c #(nop) CMD ["pypy3"]
2023-02-05 00:18:07 UTC/bin/sh -c #(nop) ENV HY_VERSION=0.25.0
2023-02-05 00:18:07 UTC/bin/sh -c #(nop) ENV HYRULE_VERSION=0.2.1
2023-02-05 00:18:39 UTC/bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION"
2023-02-05 00:18:39 UTC/bin/sh -c #(nop) 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.