Namespace
library
Image / Tag
hylang:0.18-pypy-buster
Content Digest
sha256:c65b962c72f93e6a8c4869b8ff52e2e7403e83795de643ee933eb8b2c4f950b4
Details
Created

2020-06-17 01:09:01 UTC

Size

70.2 MB

Content Digest
Environment
HY_VERSION

0.18.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.1

PYTHON_GET_PIP_SHA256

b3153ec0cf7b7bbf9556932aa37e4981c35dc2a2c501d70d91d2795aa532be79

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.1.1


Layers

[#000] sha256:860f8957d8be856e2235a28e49fc4dca17254951e0eb67d760769755656f5cad - 37.69% (26.5 MB)

[#001] sha256:2cc51cd1bef5ddf9965fc1598fd928ea2f88e82332da05dc45feab0532923fc9 - 3.74% (2.63 MB)

[#002] sha256:48d45322b2090da8b59b648f7e16f6e978523ffb34a46a4ee4abeecc3f32e89b - 51.6% (36.2 MB)

[#003] sha256:5637135f12254d5f3706c84e208c333bc3c3016fb6dfbe3649104a99be1fda68 - 3.0% (2.1 MB)

[#004] sha256:4122699eabdf277c6af4449b4dfc88d3119bcc25b790232e3dcaf51c6b387a72 - 3.98% (2.79 MB)


History
2020-06-09 01:39:49 UTC

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

2020-06-09 01:39:49 UTC

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

2020-06-17 00:46:18 UTC

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

2020-06-17 00:46:26 UTC

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

2020-06-17 00:46:26 UTC

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

2020-06-17 00:46:27 UTC

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

2020-06-17 00:49:10 UTC

/bin/sh -c set -ex; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in amd64) pypyArch='linux64'; sha256='f67cf1664a336a3e939b58b3cabfe47d893356bdc01f2e17bc912aaa6605db12' ;; arm64) pypyArch='aarch64'; sha256='0069bc3c1570b935f1687f5e128cf050cd7229309e48fad2a2bf2140d43ffcee' ;; i386) pypyArch='linux32'; sha256='2e7a818c67f3ac0708e4d8cdf1961f30cf9586b3f3ca2f215d93437c5ea4567b' ;; ppc64el) pypyArch='ppc64le'; sha256='089fd806629ebf79cb0cb4b0c303d8665f360903b79f0df9214b58dbc42e8231' ;; s390x) pypyArch='s390x'; sha256='147592888e25678c1ae1c2929dc7420b3a0990117fdb25f235cb22476b4e4b5a' ;; *) 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 patch wget libexpat1 libncurses5 ; wget -O pypy.tar.bz2 "https://downloads.python.org/pypy/pypy3.6-v${PYPY_VERSION}-${pypyArch}.tar.bz2" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum -c; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib-python -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; wget -O pypy-sqlite.patch 'https://foss.heptapod.net/pypy/pypy/commit/fbbe06715eb48df1a03640672d99335695d3e47c.patch'; awk '$1 == "diff" { yes = ($3 == "a/lib_pypy/_sqlite3.py") } yes { print }' pypy-sqlite.patch | patch --strip=1 --directory=/opt/pypy; rm pypy-sqlite.patch; ln -svT '/opt/pypy/bin/pypy3' '/usr/local/bin/pypy3'; pypy3 --version; cd /opt/pypy/lib_pypy; 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; 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 '{}' +

2020-06-17 00:49:11 UTC

/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=20.1.1

2020-06-17 00:49:11 UTC

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

2020-06-17 00:49:11 UTC

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

2020-06-17 00:49:30 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 -; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; 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

2020-06-17 00:49:30 UTC

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

2020-06-17 01:08:50 UTC

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

2020-06-17 01:09:01 UTC

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

2020-06-17 01:09:01 UTC

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

Details
Created

2020-06-17 00:52:41 UTC

Size

67.4 MB

Content Digest
Environment
HY_VERSION

0.18.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.1

PYTHON_GET_PIP_SHA256

b3153ec0cf7b7bbf9556932aa37e4981c35dc2a2c501d70d91d2795aa532be79

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.1.1


Layers

[#000] sha256:8559a31e96f442f2c7b6da49d6c84705f98a39d8be10b3f5f14821d0ee8417df - 38.35% (25.8 MB)

[#001] sha256:b97a53bc5d52d838fb7c85f5298f4b2bd07cc536b5c39080dde9ac69ff244e2b - 3.88% (2.62 MB)

[#002] sha256:21bac09d21c73c1e3ccb858eb8bfa97707a689a07c2be5d1ec40fcd83eb7a310 - 50.5% (34 MB)

[#003] sha256:ef39bbb1883a233b063ea21c19c8d116fae8ad18ad1454f10f4f7975d9f0c314 - 3.12% (2.1 MB)

[#004] sha256:88a1e7fc43e521d762521f3df05813fc9fa0e9fae6cdc49d82f82f867d5eb8a4 - 4.15% (2.79 MB)


History
2020-06-09 01:20:56 UTC

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

2020-06-09 01:20:56 UTC

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

2020-06-17 00:31:15 UTC

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

2020-06-17 00:31:22 UTC

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

2020-06-17 00:31:22 UTC

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

2020-06-17 00:31:22 UTC

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

2020-06-17 00:33:37 UTC

/bin/sh -c set -ex; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in amd64) pypyArch='linux64'; sha256='f67cf1664a336a3e939b58b3cabfe47d893356bdc01f2e17bc912aaa6605db12' ;; arm64) pypyArch='aarch64'; sha256='0069bc3c1570b935f1687f5e128cf050cd7229309e48fad2a2bf2140d43ffcee' ;; i386) pypyArch='linux32'; sha256='2e7a818c67f3ac0708e4d8cdf1961f30cf9586b3f3ca2f215d93437c5ea4567b' ;; ppc64el) pypyArch='ppc64le'; sha256='089fd806629ebf79cb0cb4b0c303d8665f360903b79f0df9214b58dbc42e8231' ;; s390x) pypyArch='s390x'; sha256='147592888e25678c1ae1c2929dc7420b3a0990117fdb25f235cb22476b4e4b5a' ;; *) 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 patch wget libexpat1 libncurses5 ; wget -O pypy.tar.bz2 "https://downloads.python.org/pypy/pypy3.6-v${PYPY_VERSION}-${pypyArch}.tar.bz2" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum -c; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib-python -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; wget -O pypy-sqlite.patch 'https://foss.heptapod.net/pypy/pypy/commit/fbbe06715eb48df1a03640672d99335695d3e47c.patch'; awk '$1 == "diff" { yes = ($3 == "a/lib_pypy/_sqlite3.py") } yes { print }' pypy-sqlite.patch | patch --strip=1 --directory=/opt/pypy; rm pypy-sqlite.patch; ln -svT '/opt/pypy/bin/pypy3' '/usr/local/bin/pypy3'; pypy3 --version; cd /opt/pypy/lib_pypy; 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; 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 '{}' +

2020-06-17 00:33:38 UTC

/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=20.1.1

2020-06-17 00:33:38 UTC

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

2020-06-17 00:33:38 UTC

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

2020-06-17 00:33:54 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 -; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; 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

2020-06-17 00:33:54 UTC

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

2020-06-17 00:52:29 UTC

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

2020-06-17 00:52:41 UTC

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

2020-06-17 00:52:41 UTC

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

Details
Created

2020-06-17 01:51:13 UTC

Size

60.2 MB

Content Digest
Environment
HY_VERSION

0.18.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.1

PYTHON_GET_PIP_SHA256

b3153ec0cf7b7bbf9556932aa37e4981c35dc2a2c501d70d91d2795aa532be79

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.1.1


Layers

[#000] sha256:33cc09c9b190539635d7c971301f623d94fda5b4b5647966c6c240902119009f - 40.99% (24.7 MB)

[#001] sha256:bed1db355fc46a30b243f69530bc0a46aef5231306c1563277cad68518f5d039 - 4.13% (2.49 MB)

[#002] sha256:ccaaf3ac27a4c8fb9006c58fbffbd19c6802bec726ad56d1e8a51219a98e4028 - 46.74% (28.1 MB)

[#003] sha256:36e7e3da3369f0fe48c344182aa1dc862d459308d60cc3267f7c5518682e0b29 - 3.5% (2.11 MB)

[#004] sha256:4d126da20c6ad6232acf2cc2d27d7c5810cb34446b6f63e780b6f537994ed7e8 - 4.65% (2.8 MB)


History
2020-06-09 01:52:01 UTC

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

2020-06-09 01:52:04 UTC

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

2020-06-17 01:17:11 UTC

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

2020-06-17 01:17:34 UTC

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

2020-06-17 01:17:35 UTC

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

2020-06-17 01:17:36 UTC

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

2020-06-17 01:22:19 UTC

/bin/sh -c set -ex; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in amd64) pypyArch='linux64'; sha256='f67cf1664a336a3e939b58b3cabfe47d893356bdc01f2e17bc912aaa6605db12' ;; arm64) pypyArch='aarch64'; sha256='0069bc3c1570b935f1687f5e128cf050cd7229309e48fad2a2bf2140d43ffcee' ;; i386) pypyArch='linux32'; sha256='2e7a818c67f3ac0708e4d8cdf1961f30cf9586b3f3ca2f215d93437c5ea4567b' ;; ppc64el) pypyArch='ppc64le'; sha256='089fd806629ebf79cb0cb4b0c303d8665f360903b79f0df9214b58dbc42e8231' ;; s390x) pypyArch='s390x'; sha256='147592888e25678c1ae1c2929dc7420b3a0990117fdb25f235cb22476b4e4b5a' ;; *) 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 patch wget libexpat1 libncurses5 ; wget -O pypy.tar.bz2 "https://downloads.python.org/pypy/pypy3.6-v${PYPY_VERSION}-${pypyArch}.tar.bz2" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum -c; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib-python -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; wget -O pypy-sqlite.patch 'https://foss.heptapod.net/pypy/pypy/commit/fbbe06715eb48df1a03640672d99335695d3e47c.patch'; awk '$1 == "diff" { yes = ($3 == "a/lib_pypy/_sqlite3.py") } yes { print }' pypy-sqlite.patch | patch --strip=1 --directory=/opt/pypy; rm pypy-sqlite.patch; ln -svT '/opt/pypy/bin/pypy3' '/usr/local/bin/pypy3'; pypy3 --version; cd /opt/pypy/lib_pypy; 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; 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 '{}' +

2020-06-17 01:22:21 UTC

/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=20.1.1

2020-06-17 01:22:21 UTC

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

2020-06-17 01:22:22 UTC

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

2020-06-17 01:22:58 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 -; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; 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

2020-06-17 01:22:59 UTC

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

2020-06-17 01:50:50 UTC

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

2020-06-17 01:51:11 UTC

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

2020-06-17 01:51:13 UTC

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

Details
Created

2020-06-17 01:15:55 UTC

Size

65.8 MB

Content Digest
Environment
HY_VERSION

0.18.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.1

PYTHON_GET_PIP_SHA256

b3153ec0cf7b7bbf9556932aa37e4981c35dc2a2c501d70d91d2795aa532be79

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.1.1


Layers

[#000] sha256:63dbb66c5119bb5086d9e6fb6b154211afc20b44ed136ab7df808f6044cfc6f1 - 44.23% (29.1 MB)

[#001] sha256:8fa4f664f89e214924c309ffa3f796bfc6e86e6353b8eb24e675f0dbddb3efe8 - 4.14% (2.72 MB)

[#002] sha256:fddf1a2d49fedd7333d0d6ff0c179bbdab3d7560628c787c3d96207504d22af7 - 44.19% (29.1 MB)

[#003] sha256:3725b3b9f7b742f451f6cba484e95c36c27467c53655fb0399bfa38cf225f6e2 - 3.2% (2.11 MB)

[#004] sha256:30c55e404130e3c88ff719b57405f6c9ddbfadae819738b7d5448e408e932e07 - 4.25% (2.8 MB)


History
2020-06-09 01:22:34 UTC

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

2020-06-09 01:22:38 UTC

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

2020-06-17 00:49:07 UTC

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

2020-06-17 00:49:50 UTC

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

2020-06-17 00:50:00 UTC

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

2020-06-17 00:50:31 UTC

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

2020-06-17 00:53:14 UTC

/bin/sh -c set -ex; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in amd64) pypyArch='linux64'; sha256='f67cf1664a336a3e939b58b3cabfe47d893356bdc01f2e17bc912aaa6605db12' ;; arm64) pypyArch='aarch64'; sha256='0069bc3c1570b935f1687f5e128cf050cd7229309e48fad2a2bf2140d43ffcee' ;; i386) pypyArch='linux32'; sha256='2e7a818c67f3ac0708e4d8cdf1961f30cf9586b3f3ca2f215d93437c5ea4567b' ;; ppc64el) pypyArch='ppc64le'; sha256='089fd806629ebf79cb0cb4b0c303d8665f360903b79f0df9214b58dbc42e8231' ;; s390x) pypyArch='s390x'; sha256='147592888e25678c1ae1c2929dc7420b3a0990117fdb25f235cb22476b4e4b5a' ;; *) 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 patch wget libexpat1 libncurses5 ; wget -O pypy.tar.bz2 "https://downloads.python.org/pypy/pypy3.6-v${PYPY_VERSION}-${pypyArch}.tar.bz2" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum -c; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib-python -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; wget -O pypy-sqlite.patch 'https://foss.heptapod.net/pypy/pypy/commit/fbbe06715eb48df1a03640672d99335695d3e47c.patch'; awk '$1 == "diff" { yes = ($3 == "a/lib_pypy/_sqlite3.py") } yes { print }' pypy-sqlite.patch | patch --strip=1 --directory=/opt/pypy; rm pypy-sqlite.patch; ln -svT '/opt/pypy/bin/pypy3' '/usr/local/bin/pypy3'; pypy3 --version; cd /opt/pypy/lib_pypy; 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; 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 '{}' +

2020-06-17 00:53:21 UTC

/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=20.1.1

2020-06-17 00:53:27 UTC

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

2020-06-17 00:53:32 UTC

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

2020-06-17 00:54:09 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 -; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; 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

2020-06-17 00:54:14 UTC

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

2020-06-17 01:15:26 UTC

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

2020-06-17 01:15:52 UTC

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

2020-06-17 01:15:55 UTC

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

Details
Created

2020-06-17 01:10:34 UTC

Size

62.9 MB

Content Digest
Environment
HY_VERSION

0.18.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.1

PYTHON_GET_PIP_SHA256

b3153ec0cf7b7bbf9556932aa37e4981c35dc2a2c501d70d91d2795aa532be79

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.1.1


Layers

[#000] sha256:405e75bf6bb0104d67fcebf58e07cd21bf344589df9c1a41c00354a60ea3a604 - 39.01% (24.5 MB)

[#001] sha256:d5674d6bc17674dc4130dae778e9560d372a136ab2736d660b4e9bab8dd6fcfe - 3.69% (2.32 MB)

[#002] sha256:2e96ad48e2f75116f325184c1bfb39bee1e22db698192b13a37e75a563e16336 - 49.51% (31.1 MB)

[#003] sha256:0b26463a0cd4b3d863da2deeb2c1dae79087269e5e11b8a0128b088002f6c7d5 - 3.35% (2.1 MB)

[#004] sha256:b71235efb439699c71ba4d02547fcbb0c46f1a3c162527c959e03ec7695e5914 - 4.45% (2.79 MB)


History
2020-06-09 01:42:37 UTC

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

2020-06-09 01:42:38 UTC

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

2020-06-17 00:51:19 UTC

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

2020-06-17 00:51:24 UTC

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

2020-06-17 00:51:24 UTC

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

2020-06-17 00:51:24 UTC

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

2020-06-17 00:51:46 UTC

/bin/sh -c set -ex; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in amd64) pypyArch='linux64'; sha256='f67cf1664a336a3e939b58b3cabfe47d893356bdc01f2e17bc912aaa6605db12' ;; arm64) pypyArch='aarch64'; sha256='0069bc3c1570b935f1687f5e128cf050cd7229309e48fad2a2bf2140d43ffcee' ;; i386) pypyArch='linux32'; sha256='2e7a818c67f3ac0708e4d8cdf1961f30cf9586b3f3ca2f215d93437c5ea4567b' ;; ppc64el) pypyArch='ppc64le'; sha256='089fd806629ebf79cb0cb4b0c303d8665f360903b79f0df9214b58dbc42e8231' ;; s390x) pypyArch='s390x'; sha256='147592888e25678c1ae1c2929dc7420b3a0990117fdb25f235cb22476b4e4b5a' ;; *) 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 patch wget libexpat1 libncurses5 ; wget -O pypy.tar.bz2 "https://downloads.python.org/pypy/pypy3.6-v${PYPY_VERSION}-${pypyArch}.tar.bz2" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum -c; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib-python -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; wget -O pypy-sqlite.patch 'https://foss.heptapod.net/pypy/pypy/commit/fbbe06715eb48df1a03640672d99335695d3e47c.patch'; awk '$1 == "diff" { yes = ($3 == "a/lib_pypy/_sqlite3.py") } yes { print }' pypy-sqlite.patch | patch --strip=1 --directory=/opt/pypy; rm pypy-sqlite.patch; ln -svT '/opt/pypy/bin/pypy3' '/usr/local/bin/pypy3'; pypy3 --version; cd /opt/pypy/lib_pypy; 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; 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 '{}' +

2020-06-17 00:51:48 UTC

/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=20.1.1

2020-06-17 00:51:48 UTC

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

2020-06-17 00:51:48 UTC

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

2020-06-17 00:51:59 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 -; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; 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

2020-06-17 00:52:00 UTC

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

2020-06-17 01:10:27 UTC

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

2020-06-17 01:10:34 UTC

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

2020-06-17 01:10:34 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