Pull Command
ENV
-
PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
-
LANG=C.UTF-8
-
PYTHONIOENCODING=UTF-8
-
GPG_KEY=C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
-
PYTHON_VERSION=2.7.18
-
PYTHON_PIP_VERSION=20.0.2
-
PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/d59197a3c169cef378a22428a3fa99d33e080a5d/get-pip.py
-
PYTHON_GET_PIP_SHA256=421ac1d44c0cf9730a088e337867d974b91bdce4ea2636099275071878cc189e
Layers
-
001
sha256:aad63a9339440e7c3e1fff2b988991b9bfb81280042fa7f39a5e327023056819
2.67 MB
-
002
sha256:259d822268fbc4235d84b0d1faa8a4ff933c0a92944c91b096a41066701f78d2
294 KB
-
003
sha256:10ba96d218d3fd7421879dbfa14bc0d3938be28dc820993773c2621dd57993fd
19.3 MB
-
004
sha256:44ba9f6a4209726dd57b562c3913b59c103767d1065f54bef7fbddabcc009431
1.8 MB
-
005
sha256:de9d91a49bc66d3a156f71f1821d5df6cbaac169fa0ab2c7adeaa2b53686913a
32.4 KB
-
006
sha256:acd1c0d163772dde9e1350684cfbc905977a850c66716a0bd2f52901c1f43440
5.23 MB
History
[2020-03-23 21:19:34 UTC] /bin/sh -c #(nop) ADD file:0c4555f363c2672e350001f1293e689875a3760afe7b3f9146886afe67121cba in /
[2020-03-23 21:19:34 UTC] /bin/sh -c #(nop) CMD ["/bin/sh"]
[2020-03-23 21:39:52 UTC] /bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[2020-03-24 02:47:26 UTC] /bin/sh -c #(nop) ENV LANG=C.UTF-8
[2020-03-24 03:31:50 UTC] /bin/sh -c #(nop) ENV PYTHONIOENCODING=UTF-8
[2020-03-24 03:31:52 UTC] /bin/sh -c apk add --no-cache ca-certificates
[2020-03-24 03:31:53 UTC] /bin/sh -c #(nop) ENV GPG_KEY=C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
[2020-04-20 19:47:02 UTC] /bin/sh -c #(nop) ENV PYTHON_VERSION=2.7.18
[2020-04-20 19:52:09 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 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 zlib-dev && apk del .fetch-deps && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-optimizations --enable-option-checking=fatal --enable-shared --enable-unicode=ucs4 --with-system-expat --with-system-ffi && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" 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 && 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 .build-deps && 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 -rf /usr/src/python && python2 --version
[2020-04-20 19:52:09 UTC] /bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=20.0.2
[2020-04-20 19:52:09 UTC] /bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/d59197a3c169cef378a22428a3fa99d33e080a5d/get-pip.py
[2020-04-20 19:52:10 UTC] /bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=421ac1d44c0cf9730a088e337867d974b91bdce4ea2636099275071878cc189e
[2020-04-20 19:52:15 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-04-20 19:52:15 UTC] /bin/sh -c #(nop) CMD ["python2"]
[2023-05-13 00:53:30 UTC] /bin/sh -c #(nop) COPY file:4a495b82072d018bc2411f7b4e259d70a29c3b9e900f7c4daa3f7806263fbf68 in /check.sh
[2023-05-13 00:53:38 UTC] /bin/sh -c chmod +x /check.sh && apk add --no-cache curl wget bash && apk add --no-cache bind-tools --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main
[2023-05-13 00:56:24 UTC] /bin/sh -c #(nop) ENTRYPOINT ["/bin/bash" "-l" "-c" "/check.sh -E"]