{"architecture":"amd64","config":{"Env":["PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","LANG=C.UTF-8","GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568","PYTHON_VERSION=3.9.5","PYTHON_PIP_VERSION=21.1.3","PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/a1675ab6c2bd898ed82b1f58c486097f763c74a9/public/get-pip.py","PYTHON_GET_PIP_SHA256=6665659241292b2147b58922b9ffe11dda66b39d52d8a6f3aa310bc1d60ea6f7"],"Cmd":["python3"],"WorkingDir":"/work","OnBuild":null},"created":"2021-07-28T06:42:40.6760182Z","history":[{"created":"2021-06-23T00:20:40.386610922Z","created_by":"/bin/sh -c #(nop) ADD file:4903a19c327468b0e08e4f463cfc162c66b85b4618b5803d71365862f6302e0b in / "},{"created":"2021-06-23T00:20:40.842961608Z","created_by":"/bin/sh -c #(nop)  CMD [\"bash\"]","empty_layer":true},{"created":"2021-06-23T14:43:51.561852163Z","created_by":"/bin/sh -c #(nop)  ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","empty_layer":true},{"created":"2021-06-23T14:43:51.773609603Z","created_by":"/bin/sh -c #(nop)  ENV LANG=C.UTF-8","empty_layer":true},{"created":"2021-06-23T14:43:58.784688453Z","created_by":"/bin/sh -c set -eux; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tca-certificates \t\tnetbase \t\ttzdata \t; \trm -rf /var/lib/apt/lists/*"},{"created":"2021-06-23T15:02:58.093885518Z","created_by":"/bin/sh -c #(nop)  ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568","empty_layer":true},{"created":"2021-06-23T15:02:58.290314916Z","created_by":"/bin/sh -c #(nop)  ENV PYTHON_VERSION=3.9.5","empty_layer":true},{"created":"2021-06-23T15:12:28.791204844Z","created_by":"/bin/sh -c set -ex \t\t\u0026\u0026 savedAptMark=\"$(apt-mark showmanual)\" \t\u0026\u0026 apt-get update \u0026\u0026 apt-get install -y --no-install-recommends \t\tdpkg-dev \t\tgcc \t\tlibbluetooth-dev \t\tlibbz2-dev \t\tlibc6-dev \t\tlibexpat1-dev \t\tlibffi-dev \t\tlibgdbm-dev \t\tliblzma-dev \t\tlibncursesw5-dev \t\tlibreadline-dev \t\tlibsqlite3-dev \t\tlibssl-dev \t\tmake \t\ttk-dev \t\tuuid-dev \t\twget \t\txz-utils \t\tzlib1g-dev \t\t$(command -v gpg \u003e /dev/null || echo 'gnupg dirmngr') \t\t\u0026\u0026 wget -O python.tar.xz \"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz\" \t\u0026\u0026 wget -O python.tar.xz.asc \"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc\" \t\u0026\u0026 export GNUPGHOME=\"$(mktemp -d)\" \t\u0026\u0026 gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys \"$GPG_KEY\" \t\u0026\u0026 gpg --batch --verify python.tar.xz.asc python.tar.xz \t\u0026\u0026 { command -v gpgconf \u003e /dev/null \u0026\u0026 gpgconf --kill all || :; } \t\u0026\u0026 rm -rf \"$GNUPGHOME\" python.tar.xz.asc \t\u0026\u0026 mkdir -p /usr/src/python \t\u0026\u0026 tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \t\u0026\u0026 rm python.tar.xz \t\t\u0026\u0026 cd /usr/src/python \t\u0026\u0026 gnuArch=\"$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)\" \t\u0026\u0026 ./configure \t\t--build=\"$gnuArch\" \t\t--enable-loadable-sqlite-extensions \t\t--enable-optimizations \t\t--enable-option-checking=fatal \t\t--enable-shared \t\t--with-system-expat \t\t--with-system-ffi \t\t--without-ensurepip \t\u0026\u0026 make -j \"$(nproc)\" \t\tLDFLAGS=\"-Wl,--strip-all\" \t\u0026\u0026 make install \t\u0026\u0026 rm -rf /usr/src/python \t\t\u0026\u0026 find /usr/local -depth \t\t\\( \t\t\t\\( -type d -a \\( -name test -o -name tests -o -name idle_test \\) \\) \t\t\t-o \\( -type f -a \\( -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \\) \\) \t\t\\) -exec rm -rf '{}' + \t\t\u0026\u0026 ldconfig \t\t\u0026\u0026 apt-mark auto '.*' \u003e /dev/null \t\u0026\u0026 apt-mark manual $savedAptMark \t\u0026\u0026 find /usr/local -type f -executable -not \\( -name '*tkinter*' \\) -exec ldd '{}' ';' \t\t| awk '/=\u003e/ { print $(NF-1) }' \t\t| sort -u \t\t| xargs -r dpkg-query --search \t\t| cut -d: -f1 \t\t| sort -u \t\t| xargs -r apt-mark manual \t\u0026\u0026 apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \t\u0026\u0026 rm -rf /var/lib/apt/lists/* \t\t\u0026\u0026 python3 --version"},{"created":"2021-06-23T15:12:29.914871417Z","created_by":"/bin/sh -c cd /usr/local/bin \t\u0026\u0026 ln -s idle3 idle \t\u0026\u0026 ln -s pydoc3 pydoc \t\u0026\u0026 ln -s python3 python \t\u0026\u0026 ln -s python3-config python-config"},{"created":"2021-06-29T01:30:31.415357732Z","created_by":"/bin/sh -c #(nop)  ENV PYTHON_PIP_VERSION=21.1.3","empty_layer":true},{"created":"2021-06-29T01:30:31.622093124Z","created_by":"/bin/sh -c #(nop)  ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/a1675ab6c2bd898ed82b1f58c486097f763c74a9/public/get-pip.py","empty_layer":true},{"created":"2021-06-29T01:30:31.799924401Z","created_by":"/bin/sh -c #(nop)  ENV PYTHON_GET_PIP_SHA256=6665659241292b2147b58922b9ffe11dda66b39d52d8a6f3aa310bc1d60ea6f7","empty_layer":true},{"created":"2021-06-29T01:30:44.963979637Z","created_by":"/bin/sh -c set -ex; \t\tsavedAptMark=\"$(apt-mark showmanual)\"; \tapt-get update; \tapt-get install -y --no-install-recommends wget; \t\twget -O get-pip.py \"$PYTHON_GET_PIP_URL\"; \techo \"$PYTHON_GET_PIP_SHA256 *get-pip.py\" | sha256sum --check --strict -; \t\tapt-mark auto '.*' \u003e /dev/null; \t[ -z \"$savedAptMark\" ] || apt-mark manual $savedAptMark; \tapt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \trm -rf /var/lib/apt/lists/*; \t\tpython get-pip.py \t\t--disable-pip-version-check \t\t--no-cache-dir \t\t\"pip==$PYTHON_PIP_VERSION\" \t; \tpip --version; \t\tfind /usr/local -depth \t\t\\( \t\t\t\\( -type d -a \\( -name test -o -name tests -o -name idle_test \\) \\) \t\t\t-o \t\t\t\\( -type f -a \\( -name '*.pyc' -o -name '*.pyo' \\) \\) \t\t\\) -exec rm -rf '{}' +; \trm -f get-pip.py"},{"created":"2021-06-29T01:30:45.203912107Z","created_by":"/bin/sh -c #(nop)  CMD [\"python3\"]","empty_layer":true},{"created":"2021-07-28T06:29:20.9894809Z","created_by":"RUN /bin/sh -c pip install pip --upgrade # buildkit","comment":"buildkit.dockerfile.v0"},{"created":"2021-07-28T06:41:55.5881153Z","created_by":"RUN /bin/sh -c pip install ansible==4.3.0 # buildkit","comment":"buildkit.dockerfile.v0"},{"created":"2021-07-28T06:42:40.6547646Z","created_by":"RUN /bin/sh -c apt-get update -y \u0026\u0026     DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends     sshpass openssh-server # buildkit","comment":"buildkit.dockerfile.v0"},{"created":"2021-07-28T06:42:40.6760182Z","created_by":"WORKDIR /work","comment":"buildkit.dockerfile.v0"}],"os":"linux","rootfs":{"type":"layers","diff_ids":["sha256:764055ebc9a7a290b64d17cf9ea550f1099c202d83795aa967428ebdf335c9f7","sha256:8d418cbfaf253d587eef60bf5a0485aa36f25a492b97a0f283b836d61c7cd678","sha256:e10857b94a57e7236e04e68e9f3e644c8eb7b38e75219c3edec9618039bb263e","sha256:115e0863702dbb6a5b4a61a3b0ae0aabefa02029e6596cc582929fdf9b28765b","sha256:5b156295b5a365833ca151be3e93a07df738cd2c2ac69e6a397f0c44a568846d","sha256:42d9d50dcfb61ec238cd5fa3b4a499b8e306208cb05e8fdddfbee3160f134f11","sha256:3f8aefbf0e819629596725e11b1a483dfd8e20503d4e80bb7e1f2e89baa57e1e","sha256:c0dc76da98205594bd410a5cad6aaa4fde96f98f5f93f855eb14f5b86bf44337","sha256:4bec0176799d42ac47ad6a9ba2724161280b7c704c9490a8ebf3d916a71b682a"]}}