Namespace
xieshang1111
Image / Tag
auto_spy:x86
Content Digest
sha256:0a3337cc89780441a067a6c3d238d1c7b8d3faf380578747677cf01a22b81c5e
Details
Created

2024-01-04 17:21:20 +0800

Size

142 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

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

PS1

\u@\h:\w $

PYTHON_GET_PIP_SHA256

c518250e91a70d7b20cceb15272209a4ded2a0c263ae5776f129e0d9b5674309

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/3cb8888cc2869620f57d5d2da64da38f516078c7/public/get-pip.py

PYTHON_PIP_VERSION

21.2.4

PYTHON_SETUPTOOLS_VERSION

57.5.0

PYTHON_VERSION

3.6.15

RUN_AS_ROOT

true

SHELL

/bin/bash


Layers

[#000] sha256:72a69066d2febc34d8f3dbcb645f7b851a57e9681322ece7ad8007503b783c19 - 18.28% (25.9 MB)

[#001] sha256:758aab0c7b735d74a7b2aecfeb1426f35c5932647aba1e1b54a25eaf5935ed81 - 1.86% (2.64 MB)

[#002] sha256:a9f18a3c91aaa5f50b134b2990ae88104489e8def723c1bfecc0bb874a118d94 - 6.52% (9.24 MB)

[#003] sha256:ec34755f4ebe48ddb2780e153be11675c425da2ad61bd66b8a8cb3b3d68339fd - 0.0% (233 Bytes)

[#004] sha256:46cf1a15d5b7c95c7fe2f25c70b0e0d140b96ff5724ceed277fcfe493d7350ee - 1.68% (2.38 MB)

[#005] sha256:0b54a8817b9a20a3338bd4bddb1384558615dc814f355e0cdceb547a802c6cd6 - 0.0% (97 Bytes)

[#006] sha256:b23e7a517d4e786443f21ce81af1fe3ba23006897fa78945ff92b759927017e7 - 27.05% (38.3 MB)

[#007] sha256:e4c4cb51395b0d8949243eeacd95220fefe9f4e840f279c97fd532cc518ea624 - 0.0% (93 Bytes)

[#008] sha256:50f7238c06ade680bb927b1766b09ac435912a137608beae33d7bfec5b8dad11 - 44.6% (63.2 MB)

[#009] sha256:9eef390d6583977a0626d0d7c4efcfbf4086602d21557465a3a3f71bfd5d8f97 - 0.0% (93 Bytes)


History
2021-12-21 01:23:04 UTC

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

2021-12-21 01:23:04 UTC

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

2021-12-21 09:37:38 UTC

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

2021-12-21 09:37:39 UTC

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

2021-12-21 11:07:05 UTC

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

2021-12-21 11:46:54 UTC

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

2021-12-21 12:21:05 UTC

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

2021-12-21 12:29:21 UTC

/bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y --no-install-recommends dpkg-dev gcc libbluetooth-dev libbz2-dev libc6-dev libexpat1-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev wget xz-utils zlib1g-dev $(command -v gpg > /dev/null || echo 'gnupg dirmngr') && 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 hkps://keys.openpgp.org --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 && 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)" 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 '{}' + && ldconfig && apt-mark auto '.*' > /dev/null && apt-mark manual $savedAptMark && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -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/* && python3 --version

2021-12-21 12:29:22 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

2021-12-21 12:29:22 UTC

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

2021-12-21 12:29:23 UTC

/bin/sh -c #(nop) ENV PYTHON_SETUPTOOLS_VERSION=57.5.0

2021-12-21 12:29:23 UTC

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

2021-12-21 12:29:23 UTC

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

2021-12-21 12:29:37 UTC

/bin/sh -c set -ex; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum --check --strict -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_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

2021-12-21 12:29:38 UTC

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

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

ARG S6_VERSION=v2.2.0.3

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

ARG S6_ARCH=amd64

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

ARG USER_NAME=autospy

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

ARG WORK_DIR=/autospy

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin SHELL=/bin/bash LANG=zh_CN.UTF-8 PS1=\u@\h:\w $ RUN_AS_ROOT=true

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

SHELL [/bin/bash -c]

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

WORKDIR /autospy

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

COPY . /autospy # buildkit

2024-01-04 17:20:14 +0800 (buildkit.dockerfile.v0)

RUN |5 S6_VERSION=v2.2.0.3 S6_ARCH=amd64 DEBIAN_FRONTEND=noninteractive USER_NAME=autospy WORK_DIR=/autospy /bin/bash -c pwd && ls # buildkit

2024-01-04 17:21:20 +0800 (buildkit.dockerfile.v0)

RUN |5 S6_VERSION=v2.2.0.3 S6_ARCH=amd64 DEBIAN_FRONTEND=noninteractive USER_NAME=autospy WORK_DIR=/autospy /bin/bash -c source ~/.bashrc && sed -i "s@http://\(deb\|security\).debian.org@https://mirrors.aliyun.com@g" /etc/apt/sources.list && apt update && apt upgrade -y && apt install --no-install-recommends -y openssl curl wget imagemagick && curl -L -o /tmp/s6-overlay-installer https://github.jd-vip.tk/https://github.com/just-containers/s6-overlay/releases/download/${S6_VERSION}/s6-overlay-${S6_ARCH}-installer && chmod +x /tmp/s6-overlay-installer && /tmp/s6-overlay-installer / && apt update && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone && pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple && python -m pip install --upgrade pip && pwd && rm -rf .git && cp -r s6/* / && apt clean -y # buildkit

2024-01-04 17:21:20 +0800 (buildkit.dockerfile.v0)

RUN |5 S6_VERSION=v2.2.0.3 S6_ARCH=amd64 DEBIAN_FRONTEND=noninteractive USER_NAME=autospy WORK_DIR=/autospy /bin/bash -c pwd && ls # buildkit

2024-01-04 17:21:20 +0800 (buildkit.dockerfile.v0)

ENTRYPOINT ["/init"]

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