{"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.2","PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/936e08ce004d0b2fae8952c50f7ccce1bc578ce5/public/get-pip.py","PYTHON_GET_PIP_SHA256=8890955d56a8262348470a76dc432825f61a84a54e2985a86cd520f656a6e220"],"Cmd":["python3"],"WorkingDir":"/work","OnBuild":null},"created":"2021-06-16T07:54:51.922690564Z","history":[{"created":"2021-05-12T01:21:22.128649612Z","created_by":"/bin/sh -c #(nop) ADD file:7362e0e50f30ff45463ea38bb265cb8f6b7cd422eb2d09de7384efa0b59614be in / "},{"created":"2021-05-12T01:21:22.552826465Z","created_by":"/bin/sh -c #(nop)  CMD [\"bash\"]","empty_layer":true},{"created":"2021-05-12T15:05:32.437057361Z","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-05-12T15:05:32.723226803Z","created_by":"/bin/sh -c #(nop)  ENV LANG=C.UTF-8","empty_layer":true},{"created":"2021-05-12T15:05:46.994421572Z","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-05-12T15:28:08.490332056Z","created_by":"/bin/sh -c #(nop)  ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568","empty_layer":true},{"created":"2021-05-12T15:28:08.725345001Z","created_by":"/bin/sh -c #(nop)  ENV PYTHON_VERSION=3.9.5","empty_layer":true},{"created":"2021-05-12T15:38:14.631449877Z","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-05-12T15:38:16.426419889Z","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-05-24T19:33:22.918990717Z","created_by":"/bin/sh -c #(nop)  ENV PYTHON_PIP_VERSION=21.1.2","empty_layer":true},{"created":"2021-05-24T19:33:23.11541177Z","created_by":"/bin/sh -c #(nop)  ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/936e08ce004d0b2fae8952c50f7ccce1bc578ce5/public/get-pip.py","empty_layer":true},{"created":"2021-05-24T19:33:23.308921075Z","created_by":"/bin/sh -c #(nop)  ENV PYTHON_GET_PIP_SHA256=8890955d56a8262348470a76dc432825f61a84a54e2985a86cd520f656a6e220","empty_layer":true},{"created":"2021-05-24T19:33:35.105700473Z","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-05-24T19:33:35.35710434Z","created_by":"/bin/sh -c #(nop)  CMD [\"python3\"]","empty_layer":true},{"created":"2021-06-16T07:52:05.998131295Z","created_by":"RUN /bin/sh -c pip install pip --upgrade # buildkit","comment":"buildkit.dockerfile.v0"},{"created":"2021-06-16T07:54:38.039968437Z","created_by":"RUN /bin/sh -c pip install ansible==4.1.0 # buildkit","comment":"buildkit.dockerfile.v0"},{"created":"2021-06-16T07:54:51.905786598Z","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-06-16T07:54:51.922690564Z","created_by":"WORKDIR /work","comment":"buildkit.dockerfile.v0"}],"os":"linux","rootfs":{"type":"layers","diff_ids":["sha256:02c055ef67f5904019f43a41ea5f099996d8e7633749b6e606c400526b2c4b33","sha256:98a85d041f3551e2f653ac7c6066b47189a901d438190d2b707676d9afc40744","sha256:0315c2e53dfa5efa179477c5f81bec4710c65ab9a364b5fa203e1b440f9e3c9f","sha256:677735e8b7e040cf94fac5222834efac276efa26272f7c0953aca9ea728bbe9c","sha256:297b0524127407faa8f8fdb565df3692c49be1820f27969762b4818d84a5a714","sha256:bf86555b03b3d0d3c1a67f60062d84d9cdb0b816700b5bafb17e34b30dddff0f","sha256:a3205aceaf82f475c21569a27adf17b6a9f072f63412e74ba01d55e9b9300ffd","sha256:f3f3677e6f033edc336c5b293f2ae9b8a42644d6e4a136799081d3e152a78079","sha256:585b2449fd02a28289549caa71821a08cfd914c31a513a889f85791b74854a56"]}}