Namespace
library
Image / Tag
hylang:0.19-python3.6-alpine3.11
Content Digest
sha256:fafdfd3b88cca7cd0a1e7666fc9a6b77cfa6fcea36685850b955e09a0aac5a18
Details
Created

2020-12-17 10:36:12 UTC

Size

17.7 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

HY_VERSION

0.19.0

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

6a0b13826862f33c13b614a921d36253bfa1ae779c5fbf569876f3585057e9d2

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.3.3

PYTHON_VERSION

3.6.12


Layers

[#000] sha256:60519712d04c07db59906a2e14fa87c037b6504d612ba116ea1ef94ae08a650b - 15.12% (2.68 MB)

[#001] sha256:ce3a008c1853e538eeb067786c0c0e8bf4bbbb16d1061a9581d516516c0b927c - 1.61% (293 KB)

[#002] sha256:c4d6d155c14c671122147507ef8bf170fb014e7effd1e38b9e9c6dc4f96b0600 - 56.66% (10 MB)

[#003] sha256:ba1d01517d0832d09191810313d56f2846955d14f209633e17773b4f024acace - 0.0% (229 Bytes)

[#004] sha256:d74214bea061fa03565c488689531077f8f944d8d7f1e40b6e9c9c99cb28c6fb - 11.5% (2.04 MB)

[#005] sha256:ff14ef7289414b85962e693afe26c3b9c17547f7d2f9d90bcca1cb06f7680ae5 - 15.11% (2.68 MB)


History
2020-12-17 00:38:39 UTC

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

2020-12-17 00:38:39 UTC

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

2020-12-17 06:32:59 UTC

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

2020-12-17 06:32:59 UTC

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

2020-12-17 06:33:00 UTC

/bin/sh -c set -eux; apk add --no-cache ca-certificates ;

2020-12-17 06:50:28 UTC

/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

2020-12-17 07:07:42 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.6.12

2020-12-17 07:14:45 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps gnupg tar xz && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } && rm -rf "$GNUPGHOME" python.tar.xz.asc && mkdir -p /usr/src/python && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev coreutils dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev xz-dev zlib-dev && apk del --no-network .fetch-deps && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" LDFLAGS="-Wl,--strip-all" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' && make install && rm -rf /usr/src/python && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -exec rm -rf '{}' + && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-cache --virtual .python-rundeps && apk del --no-network .build-deps && python3 --version

2020-12-17 07:14:46 UTC

/bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config

2020-12-17 07:14:46 UTC

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

2020-12-17 07:14:46 UTC

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

2020-12-17 07:14:47 UTC

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

2020-12-17 07:14:53 UTC

/bin/sh -c set -ex; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; pip --version; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2020-12-17 07:14:53 UTC

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

2020-12-17 10:36:01 UTC

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

2020-12-17 10:36:11 UTC

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

2020-12-17 10:36:12 UTC

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

Details
Created

2020-12-17 17:51:06 UTC

Size

17.6 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

HY_VERSION

0.19.0

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

6a0b13826862f33c13b614a921d36253bfa1ae779c5fbf569876f3585057e9d2

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.3.3

PYTHON_VERSION

3.6.12


Layers

[#000] sha256:0a6724ff3fcd51338afdfdc2b1d4ffd04569818e31efad957213d67c29b45101 - 15.29% (2.68 MB)

[#001] sha256:233d96b408279e8bd3bc2420e6b070d4af559b50d792ee416508669ba88d68f2 - 1.63% (293 KB)

[#002] sha256:28bce36a6af9a34f365e00274ef834622471105ac6cec82981ecf07ec2e9be13 - 56.21% (9.87 MB)

[#003] sha256:dfdaef95335fb900deef4a10857eb726cc45f7ae324982ed176547bdf73ac896 - 0.0% (230 Bytes)

[#004] sha256:b63058ba1a13a5d2a289a703782286286e0dba80e9ffdbf77e5397c46f637d8e - 11.61% (2.04 MB)

[#005] sha256:6382648773b61d2902ba372ecc7f3be48d2749fea3ae8f20ff34ba942125bd77 - 15.26% (2.68 MB)


History
2020-12-17 00:19:49 UTC

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

2020-12-17 00:19:49 UTC

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

2020-12-17 02:11:02 UTC

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

2020-12-17 02:11:02 UTC

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

2020-12-17 02:11:04 UTC

/bin/sh -c set -eux; apk add --no-cache ca-certificates ;

2020-12-17 05:22:03 UTC

/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

2020-12-17 08:30:14 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.6.12

2020-12-17 08:37:23 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps gnupg tar xz && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } && rm -rf "$GNUPGHOME" python.tar.xz.asc && mkdir -p /usr/src/python && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev coreutils dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev xz-dev zlib-dev && apk del --no-network .fetch-deps && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" LDFLAGS="-Wl,--strip-all" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' && make install && rm -rf /usr/src/python && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -exec rm -rf '{}' + && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-cache --virtual .python-rundeps && apk del --no-network .build-deps && python3 --version

2020-12-17 08:37:25 UTC

/bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config

2020-12-17 08:37:25 UTC

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

2020-12-17 08:37:25 UTC

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

2020-12-17 08:37:26 UTC

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

2020-12-17 08:37:36 UTC

/bin/sh -c set -ex; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; pip --version; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2020-12-17 08:37:36 UTC

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

2020-12-17 17:51:01 UTC

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

2020-12-17 17:51:06 UTC

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

2020-12-17 17:51:06 UTC

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

Details
Created

2020-12-17 10:36:33 UTC

Size

17 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

HY_VERSION

0.19.0

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

6a0b13826862f33c13b614a921d36253bfa1ae779c5fbf569876f3585057e9d2

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.3.3

PYTHON_VERSION

3.6.12


Layers

[#000] sha256:56fec67ad66eea034cf5b7d0d0ffd355c0fe87611bad132ac5a952fcaa52138b - 14.67% (2.5 MB)

[#001] sha256:47f23ae38c65dbef0b3cc2ac2315aa2827f11bd8a88fb155443d02829807f61c - 1.68% (293 KB)

[#002] sha256:92965cc9be1260ea8fcdaeb7831c123783d517804c28ce355d20be6e732496af - 55.96% (9.53 MB)

[#003] sha256:5ddd4767e6dd776b801d5781994bcffc11a3c5220d3783c8009fa1cd1f7f720b - 0.0% (231 Bytes)

[#004] sha256:b0c8e0ff26c1fea1cb26a89565c5f330bd8bd8b8ed5034b7991cfda755ea0041 - 11.97% (2.04 MB)

[#005] sha256:df2dbfb7d2b4ab9f1f7f5d3e44d7d7b418ba00ddcfbdbc5a62bcd103499de852 - 15.73% (2.68 MB)


History
2020-12-16 23:49:53 UTC

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

2020-12-16 23:49:55 UTC

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

2020-12-17 06:41:25 UTC

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

2020-12-17 06:41:27 UTC

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

2020-12-17 06:41:31 UTC

/bin/sh -c set -eux; apk add --no-cache ca-certificates ;

2020-12-17 07:08:13 UTC

/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

2020-12-17 07:34:21 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.6.12

2020-12-17 07:43:14 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps gnupg tar xz && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } && rm -rf "$GNUPGHOME" python.tar.xz.asc && mkdir -p /usr/src/python && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev coreutils dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev xz-dev zlib-dev && apk del --no-network .fetch-deps && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" LDFLAGS="-Wl,--strip-all" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' && make install && rm -rf /usr/src/python && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -exec rm -rf '{}' + && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-cache --virtual .python-rundeps && apk del --no-network .build-deps && python3 --version

2020-12-17 07:43:16 UTC

/bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config

2020-12-17 07:43:17 UTC

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

2020-12-17 07:43:18 UTC

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

2020-12-17 07:43:18 UTC

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

2020-12-17 07:43:31 UTC

/bin/sh -c set -ex; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; pip --version; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2020-12-17 07:43:33 UTC

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

2020-12-17 10:36:18 UTC

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

2020-12-17 10:36:32 UTC

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

2020-12-17 10:36:33 UTC

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

Details
Created

2020-12-17 10:57:15 UTC

Size

16.3 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

HY_VERSION

0.19.0

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

6a0b13826862f33c13b614a921d36253bfa1ae779c5fbf569876f3585057e9d2

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.3.3

PYTHON_VERSION

3.6.12


Layers

[#000] sha256:71728559ce1f58d5e0ef30be5b1d7628ff967d4038f9202818dd3d8c76feb8ab - 14.21% (2.31 MB)

[#001] sha256:508e3fb4c86f690902e4be263a6f51548be539bb932e2d1426e7c60f724e9678 - 1.75% (292 KB)

[#002] sha256:ee012b2c316549221b2515e97ed235d2c4b6abff0698ff44f6b2c01f7dcd030e - 55.01% (8.94 MB)

[#003] sha256:7e03b0a4ccda2d9c4e1c9ec978b9dda8d0cfd33bea05af171fe8a55f463644b7 - 0.0% (231 Bytes)

[#004] sha256:f0e0e7bfdbf621dad047ea75b95027abebc427db79e321578892ed1b80cd9e9d - 12.54% (2.04 MB)

[#005] sha256:e65b028e5e406bd02c87a37a019e9e54c979e9d983a45adcb352e3a6d24178de - 16.48% (2.68 MB)


History
2020-12-16 23:58:28 UTC

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

2020-12-16 23:58:29 UTC

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

2020-12-17 07:08:34 UTC

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

2020-12-17 07:08:35 UTC

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

2020-12-17 07:08:37 UTC

/bin/sh -c set -eux; apk add --no-cache ca-certificates ;

2020-12-17 07:24:48 UTC

/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

2020-12-17 07:41:27 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.6.12

2020-12-17 07:46:14 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps gnupg tar xz && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } && rm -rf "$GNUPGHOME" python.tar.xz.asc && mkdir -p /usr/src/python && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev coreutils dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev xz-dev zlib-dev && apk del --no-network .fetch-deps && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" LDFLAGS="-Wl,--strip-all" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' && make install && rm -rf /usr/src/python && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -exec rm -rf '{}' + && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-cache --virtual .python-rundeps && apk del --no-network .build-deps && python3 --version

2020-12-17 07:46:16 UTC

/bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config

2020-12-17 07:46:17 UTC

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

2020-12-17 07:46:18 UTC

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

2020-12-17 07:46:18 UTC

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

2020-12-17 07:46:30 UTC

/bin/sh -c set -ex; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; pip --version; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2020-12-17 07:46:31 UTC

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

2020-12-17 10:57:04 UTC

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

2020-12-17 10:57:14 UTC

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

2020-12-17 10:57:15 UTC

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

Details
Created

2020-12-17 13:09:22 UTC

Size

17.6 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

HY_VERSION

0.19.0

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

6a0b13826862f33c13b614a921d36253bfa1ae779c5fbf569876f3585057e9d2

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.3.3

PYTHON_VERSION

3.6.12


Layers

[#000] sha256:20d8a246443a66e74e17f2a0e81a51fe774876ca0c2676691c37ee1b0e4d3cd5 - 14.77% (2.6 MB)

[#001] sha256:49b5f17f69216b30a243442af8849c15ecbff6a46a06cb002e9f03078ea87ace - 1.63% (293 KB)

[#002] sha256:bf4a5d195dcdf813b665f2dc906e037cb9e35afd56b8d9daa7433214c6c851a5 - 56.77% (9.99 MB)

[#003] sha256:b771c9ee7268b12d90ee59c4e4fb4694787039e75483f19998dec0ed8dcc7006 - 0.0% (235 Bytes)

[#004] sha256:970714f59af316a34ea54bc04aec182a0a4b9a0aaffc70837ab3e5d98a14e231 - 11.59% (2.04 MB)

[#005] sha256:673ebc28304175f79b8ea368219b7c4f17eadbd21f404b6cbbaf5d2906f67dcf - 15.23% (2.68 MB)


History
2020-12-16 23:40:37 UTC

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

2020-12-16 23:40:39 UTC

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

2020-12-17 05:06:56 UTC

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

2020-12-17 07:52:39 UTC

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

2020-12-17 07:52:41 UTC

/bin/sh -c set -eux; apk add --no-cache ca-certificates ;

2020-12-17 08:15:32 UTC

/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

2020-12-17 08:39:08 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.6.12

2020-12-17 08:47:00 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps gnupg tar xz && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } && rm -rf "$GNUPGHOME" python.tar.xz.asc && mkdir -p /usr/src/python && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev coreutils dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev xz-dev zlib-dev && apk del --no-network .fetch-deps && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" LDFLAGS="-Wl,--strip-all" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' && make install && rm -rf /usr/src/python && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -exec rm -rf '{}' + && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-cache --virtual .python-rundeps && apk del --no-network .build-deps && python3 --version

2020-12-17 08:47:04 UTC

/bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config

2020-12-17 08:47:05 UTC

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

2020-12-17 08:47:06 UTC

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

2020-12-17 08:47:07 UTC

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

2020-12-17 08:47:21 UTC

/bin/sh -c set -ex; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; pip --version; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2020-12-17 08:47:24 UTC

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

2020-12-17 13:09:12 UTC

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

2020-12-17 13:09:21 UTC

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

2020-12-17 13:09:22 UTC

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

Details
Created

2020-12-17 16:52:30 UTC

Size

18.2 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

HY_VERSION

0.19.0

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

6a0b13826862f33c13b614a921d36253bfa1ae779c5fbf569876f3585057e9d2

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.3.3

PYTHON_VERSION

3.6.12


Layers

[#000] sha256:2c090b1a59445fb94c5fb14edf51af12a8f8bc2259535b08191f26ea84a7bb05 - 14.76% (2.69 MB)

[#001] sha256:722c5f720201e02b4b0bd8f3f88e7748788edba855ba946b75624a062ad0d51a - 1.58% (295 KB)

[#002] sha256:0d2822a4115d869fddd0c17f62ddafb737455d552f3632d0106b9b8b06cc4454 - 57.77% (10.5 MB)

[#003] sha256:fe56815d16f696e0d8bc6f2d47ed4f784ac56ef6e58bb37515ed8ead058fa550 - 0.0% (234 Bytes)

[#004] sha256:ed51d249b74d1e40ccd2ff9c85078ae3f8badd0aa9c54018f0560135a041b7be - 11.18% (2.04 MB)

[#005] sha256:392a1a2196ef547e97cf7d8ca3eefd83e691282527ca92c251cab86b7eb1dc7b - 14.7% (2.68 MB)


History
2020-12-17 00:21:03 UTC

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

2020-12-17 00:21:06 UTC

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

2020-12-17 10:06:12 UTC

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

2020-12-17 10:06:18 UTC

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

2020-12-17 10:06:29 UTC

/bin/sh -c set -eux; apk add --no-cache ca-certificates ;

2020-12-17 10:29:32 UTC

/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

2020-12-17 10:51:37 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.6.12

2020-12-17 10:59:18 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps gnupg tar xz && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } && rm -rf "$GNUPGHOME" python.tar.xz.asc && mkdir -p /usr/src/python && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev coreutils dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev xz-dev zlib-dev && apk del --no-network .fetch-deps && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" LDFLAGS="-Wl,--strip-all" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' && make install && rm -rf /usr/src/python && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -exec rm -rf '{}' + && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-cache --virtual .python-rundeps && apk del --no-network .build-deps && python3 --version

2020-12-17 10:59:32 UTC

/bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config

2020-12-17 10:59:40 UTC

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

2020-12-17 10:59:43 UTC

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

2020-12-17 10:59:48 UTC

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

2020-12-17 11:00:08 UTC

/bin/sh -c set -ex; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; pip --version; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2020-12-17 11:00:15 UTC

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

2020-12-17 16:51:44 UTC

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

2020-12-17 16:52:21 UTC

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

2020-12-17 16:52:30 UTC

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

Details
Created

2020-12-17 13:34:57 UTC

Size

17.3 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

HY_VERSION

0.19.0

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

6a0b13826862f33c13b614a921d36253bfa1ae779c5fbf569876f3585057e9d2

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.3.3

PYTHON_VERSION

3.6.12


Layers

[#000] sha256:ae4c90d25da4580c1cd02a35a672d9113b17e063183b4148c463df4d33079192 - 14.2% (2.46 MB)

[#001] sha256:1bf385f85cc27e1028f51bfcbffd968615b36b1a89bf0645688ccc820f958717 - 1.65% (293 KB)

[#002] sha256:422419642683ce547428f58b206e1a1add3b1b413958ca14975a28c107b5b6eb - 56.94% (9.88 MB)

[#003] sha256:abed57034411a35629beb9f64b658d653c0b00c93d197586698992de586e3f1d - 0.0% (228 Bytes)

[#004] sha256:736c3d68c461863a55ab7796de8a53b34924a4f78728e896f96b9ebc7c0357ae - 11.76% (2.04 MB)

[#005] sha256:99424f6f3d2eb2fc5e9f9eb22d3400888c42f3c6a980dd68d99ed26ba3eccb69 - 15.45% (2.68 MB)


History
2020-12-16 23:41:44 UTC

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

2020-12-16 23:41:44 UTC

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

2020-12-17 08:41:56 UTC

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

2020-12-17 08:41:57 UTC

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

2020-12-17 08:42:00 UTC

/bin/sh -c set -eux; apk add --no-cache ca-certificates ;

2020-12-17 09:01:59 UTC

/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

2020-12-17 09:20:29 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.6.12

2020-12-17 09:27:02 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps gnupg tar xz && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } && rm -rf "$GNUPGHOME" python.tar.xz.asc && mkdir -p /usr/src/python && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev coreutils dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev xz-dev zlib-dev && apk del --no-network .fetch-deps && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" LDFLAGS="-Wl,--strip-all" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' && make install && rm -rf /usr/src/python && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -exec rm -rf '{}' + && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-cache --virtual .python-rundeps && apk del --no-network .build-deps && python3 --version

2020-12-17 09:27:05 UTC

/bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config

2020-12-17 09:27:05 UTC

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

2020-12-17 09:27:06 UTC

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

2020-12-17 09:27:07 UTC

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

2020-12-17 09:27:14 UTC

/bin/sh -c set -ex; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; pip --version; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2020-12-17 09:27:16 UTC

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

2020-12-17 13:34:50 UTC

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

2020-12-17 13:34:56 UTC

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

2020-12-17 13:34:57 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