Namespace
library
Image / Tag
python:2.7.15-jessie
Content Digest
sha256:722bf0722290da1ae03e24eba54f0b19df4d3a0c0a10836ad4726ecda8d00923
Details
Created

2019-03-02 16:19:42 UTC

Size

270 MB

Content Digest
Environment
GPG_KEY

C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF

LANG

C.UTF-8

PATH

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

PYTHONIOENCODING

UTF-8

PYTHON_PIP_VERSION

19.0.3

PYTHON_VERSION

2.7.15


Layers

[#000] sha256:0d2c60a99fbfd5389008365663b1914f58c65ad5174908669d2fd547813d4df9 - 19.25% (52.1 MB)

[#001] sha256:e2f8a1642cca50fb512e186f15c61d2abd8bcf91ea3f8de5b6f58faa9de847ac - 7.0% (18.9 MB)

[#002] sha256:5080d1b2ea8bf5eca40266f2495503d0e2f3c12389fed01088be0cef360df689 - 15.5% (41.9 MB)

[#003] sha256:2808ef9b96a0bdd5695f27f52065ea43793f18261cc3750b21ce1790ea1c1e4c - 49.39% (134 MB)

[#004] sha256:d805a254bdfde2bba91ab156fa1598d73c97a948286a0171e6924014ddf7c12f - 2.12% (5.73 MB)

[#005] sha256:9ffbea0a162296cbf9dd3d7f2a0728a61bd1e2a843fccdc35f77d700c38d7341 - 4.8% (13 MB)

[#006] sha256:9e12dc33373fa98e43b490e53f17b47917218f3292f284c1923a4d173e1a0c89 - 0.64% (1.73 MB)

[#007] sha256:85ac7d883e353df7d4e5df4ca4c5cd09988c31ba89dcf42d946074fd74c21d4b - 1.31% (3.54 MB)


History
2019-02-06 11:58:36 UTC

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

2019-02-06 11:58:37 UTC

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

2019-02-07 01:37:15 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl netbase wget && rm -rf /var/lib/apt/lists/*

2019-02-07 01:37:17 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2019-02-07 01:41:10 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends bzr git mercurial openssh-client subversion procps && rm -rf /var/lib/apt/lists/*

2019-03-02 11:51:32 UTC

/bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends autoconf automake bzip2 dpkg-dev file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev libdb-dev libevent-dev libffi-dev libgdbm-dev libgeoip-dev libglib2.0-dev libgmp-dev libjpeg-dev libkrb5-dev liblzma-dev libmagickcore-dev libmagickwand-dev libncurses5-dev libncursesw5-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev libyaml-dev make patch unzip xz-utils zlib1g-dev $( if apt-cache show 'default-libmysqlclient-dev' 2>/dev/null | grep -q '^Version:'; then echo 'default-libmysqlclient-dev'; else echo 'libmysqlclient-dev'; fi ) ; rm -rf /var/lib/apt/lists/*

2019-03-02 12:19:05 UTC

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

2019-03-02 12:19:05 UTC

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

2019-03-02 16:14:52 UTC

/bin/sh -c #(nop) ENV PYTHONIOENCODING=UTF-8

2019-03-02 16:17:33 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends tk-dev && rm -rf /var/lib/apt/lists/*

2019-03-02 16:17:34 UTC

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

2019-03-02 16:17:34 UTC

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

2019-03-02 16:19:33 UTC

/bin/sh -c set -ex && 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 && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-shared --enable-unicode=ucs4 && make -j "$(nproc)" && make install && ldconfig && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' + && rm -rf /usr/src/python && python2 --version

2019-03-02 16:19:34 UTC

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

2019-03-02 16:19:39 UTC

/bin/sh -c set -ex; wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py'; 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 \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2019-03-02 16:19:42 UTC

/bin/sh -c pip install --no-cache-dir virtualenv

2019-03-02 16:19:42 UTC

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

Details
Created

2019-02-22 01:01:31 UTC

Size

260 MB

Content Digest
Environment
GPG_KEY

C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF

LANG

C.UTF-8

PATH

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

PYTHONIOENCODING

UTF-8

PYTHON_PIP_VERSION

19.0.3

PYTHON_VERSION

2.7.15


Layers

[#000] sha256:ff42297909573059acb8e981efbc12eff68641f8449f04470a4f218e53a1e80e - 19.96% (51.9 MB)

[#001] sha256:de1f85cbc0218759652e5a51e5c5a13006ac20b8ab141c05f1e67a1444a9e62a - 6.44% (16.7 MB)

[#002] sha256:e1b6a4984ab4bb79a3eb640a4f0b53c7822e7f59f5f80000847f063948eb56b6 - 15.89% (41.3 MB)

[#003] sha256:ba23a7108e883a22709272088ccf156aa59b91b917600e217e1c8084e0eacad6 - 48.23% (125 MB)

[#004] sha256:79d573c9e58e494a2499bc0c9b196dfee55e2606da55ab97675a376613ddc807 - 2.11% (5.48 MB)

[#005] sha256:d377fc97af68ac6506f28911861caea2540210dd53164d13fc45b1d7a81f4968 - 5.35% (13.9 MB)

[#006] sha256:d49d41cb06dbe14704ecad8c6d7a61421ded7a403deb0629ebbd1d0b8029f6b9 - 0.66% (1.73 MB)

[#007] sha256:566a4ae1f46831302465d601e0c510c80522a38ede8c3c500180a6555b18e9f5 - 1.36% (3.54 MB)


History
2019-02-06 03:27:30 UTC

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

2019-02-06 03:27:31 UTC

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

2019-02-06 05:43:28 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl netbase wget && rm -rf /var/lib/apt/lists/*

2019-02-06 05:43:28 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2019-02-06 05:45:54 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends bzr git mercurial openssh-client subversion procps && rm -rf /var/lib/apt/lists/*

2019-02-06 05:48:52 UTC

/bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends autoconf automake bzip2 dpkg-dev file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev libdb-dev libevent-dev libffi-dev libgdbm-dev libgeoip-dev libglib2.0-dev libjpeg-dev libkrb5-dev liblzma-dev libmagickcore-dev libmagickwand-dev libncurses5-dev libncursesw5-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev libyaml-dev make patch unzip xz-utils zlib1g-dev $( if apt-cache show 'default-libmysqlclient-dev' 2>/dev/null | grep -q '^Version:'; then echo 'default-libmysqlclient-dev'; else echo 'libmysqlclient-dev'; fi ) ; rm -rf /var/lib/apt/lists/*

2019-02-06 09:55:53 UTC

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

2019-02-06 09:55:53 UTC

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

2019-02-06 12:38:06 UTC

/bin/sh -c #(nop) ENV PYTHONIOENCODING=UTF-8

2019-02-06 12:40:10 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends tk-dev && rm -rf /var/lib/apt/lists/*

2019-02-06 12:40:10 UTC

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

2019-02-06 12:40:11 UTC

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

2019-02-06 12:43:14 UTC

/bin/sh -c set -ex && 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 && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-shared --enable-unicode=ucs4 && make -j "$(nproc)" && make install && ldconfig && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' + && rm -rf /usr/src/python && python2 --version

2019-02-22 01:01:22 UTC

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

2019-02-22 01:01:28 UTC

/bin/sh -c set -ex; wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py'; 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 \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2019-02-22 01:01:31 UTC

/bin/sh -c pip install --no-cache-dir virtualenv

2019-02-22 01:01:31 UTC

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

Details
Created

2019-02-22 10:49:55 UTC

Size

241 MB

Content Digest
Environment
GPG_KEY

C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF

LANG

C.UTF-8

PATH

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

PYTHONIOENCODING

UTF-8

PYTHON_PIP_VERSION

19.0.3

PYTHON_VERSION

2.7.15


Layers

[#000] sha256:50fd141dcc41a9d8165a0900c6d253849085d5fefc20c8802d9ab7990cbc0f88 - 20.84% (50.1 MB)

[#001] sha256:6c97e5089c7dbd37156a16aa333e82a8047c39870627ad13f9d513f514eba1f9 - 6.75% (16.2 MB)

[#002] sha256:ef1e3e333e6420f3b76bbee5414c4d1c57e7b42b8a42899bcb8e54e780b280ec - 16.31% (39.2 MB)

[#003] sha256:9b25ed3de9d90618a35e1452e88796e1d13223bdc809c1eb9c57add0346086a9 - 45.97% (111 MB)

[#004] sha256:f6c1d56690700eae4f82944bd6155e47488690866a7b6f96046f6a98f62ceac4 - 2.18% (5.25 MB)

[#005] sha256:7d0e710afaa83362acec6389573f4947a61cd2cbdc048547844ca5d670628aef - 5.76% (13.8 MB)

[#006] sha256:f4f31116db8ef715fb1fc7681a808ab6b9d6b1317c2b6b2daf004061a68b1d9b - 0.72% (1.73 MB)

[#007] sha256:c3078978b119851987bc6d98b658af558e186050a8a99ee4323f6c02d44b06e0 - 1.47% (3.54 MB)


History
2019-01-23 09:50:10 UTC

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

2019-01-23 09:50:11 UTC

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

2019-01-23 10:30:29 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl netbase wget && rm -rf /var/lib/apt/lists/*

2019-01-23 10:30:30 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2019-01-23 10:32:13 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends bzr git mercurial openssh-client subversion procps && rm -rf /var/lib/apt/lists/*

2019-01-23 10:35:12 UTC

/bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends autoconf automake bzip2 dpkg-dev file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev libdb-dev libevent-dev libffi-dev libgdbm-dev libgeoip-dev libglib2.0-dev libjpeg-dev libkrb5-dev liblzma-dev libmagickcore-dev libmagickwand-dev libncurses5-dev libncursesw5-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev libyaml-dev make patch unzip xz-utils zlib1g-dev $( if apt-cache show 'default-libmysqlclient-dev' 2>/dev/null | grep -q '^Version:'; then echo 'default-libmysqlclient-dev'; else echo 'libmysqlclient-dev'; fi ) ; rm -rf /var/lib/apt/lists/*

2019-01-23 10:48:48 UTC

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

2019-01-23 10:48:49 UTC

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

2019-01-23 12:19:14 UTC

/bin/sh -c #(nop) ENV PYTHONIOENCODING=UTF-8

2019-01-23 12:20:12 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends tk-dev && rm -rf /var/lib/apt/lists/*

2019-01-23 12:20:13 UTC

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

2019-01-23 12:20:13 UTC

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

2019-01-23 12:23:02 UTC

/bin/sh -c set -ex && 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 && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-shared --enable-unicode=ucs4 && make -j "$(nproc)" && make install && ldconfig && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' + && rm -rf /usr/src/python && python2 --version

2019-02-22 10:49:40 UTC

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

2019-02-22 10:49:50 UTC

/bin/sh -c set -ex; wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py'; 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 \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2019-02-22 10:49:55 UTC

/bin/sh -c pip install --no-cache-dir virtualenv

2019-02-22 10:49:55 UTC

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

Details
Created

2019-03-02 14:22:02 UTC

Size

237 MB

Content Digest
Environment
GPG_KEY

C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF

LANG

C.UTF-8

PATH

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

PYTHONIOENCODING

UTF-8

PYTHON_PIP_VERSION

19.0.3

PYTHON_VERSION

2.7.15


Layers

[#000] sha256:9800246268d2ef744bda6da9d267fc24b9e904492c8abae95a2ea4e9a64a93ae - 20.27% (48 MB)

[#001] sha256:a417a1381c3b2efadb424349e0ed96d849692fb1454d122112ddb3f26f93e59a - 6.74% (15.9 MB)

[#002] sha256:9d35a0ed8f4b6777b40114da3de56b7c3c08f277d4a083ba840615b17e991a39 - 16.02% (37.9 MB)

[#003] sha256:ac2deea38ebae61860bcdde8ce01a850430ae31723f12406dc6ee2d18eeed70e - 46.93% (111 MB)

[#004] sha256:6bb88d9a6d9ccaed8ae0ca1df120edf643355cba766272262ee387efaa594352 - 2.09% (4.95 MB)

[#005] sha256:23581be17cf5fd46823932ed8d15a51c7ba71dd86ec04afffc7a15cda94f8c6a - 5.72% (13.5 MB)

[#006] sha256:1152cdba44bd7b5f7e15f27540f8c4cff1e6bb099949111febae574e8902a9f2 - 0.73% (1.73 MB)

[#007] sha256:c3fa5fd4199e3de69abb5ac4829c7212ff57b44b7589ce3ea10b29686bc536d8 - 1.5% (3.54 MB)


History
2019-02-07 12:59:04 UTC

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

2019-02-07 12:59:05 UTC

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

2019-02-07 15:30:07 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl netbase wget && rm -rf /var/lib/apt/lists/*

2019-02-07 15:30:10 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2019-02-07 15:31:48 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends bzr git mercurial openssh-client subversion procps && rm -rf /var/lib/apt/lists/*

2019-03-02 13:11:08 UTC

/bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends autoconf automake bzip2 dpkg-dev file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev libdb-dev libevent-dev libffi-dev libgdbm-dev libgeoip-dev libglib2.0-dev libgmp-dev libjpeg-dev libkrb5-dev liblzma-dev libmagickcore-dev libmagickwand-dev libncurses5-dev libncursesw5-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev libyaml-dev make patch unzip xz-utils zlib1g-dev $( if apt-cache show 'default-libmysqlclient-dev' 2>/dev/null | grep -q '^Version:'; then echo 'default-libmysqlclient-dev'; else echo 'libmysqlclient-dev'; fi ) ; rm -rf /var/lib/apt/lists/*

2019-03-02 13:56:01 UTC

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

2019-03-02 13:56:02 UTC

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

2019-03-02 14:18:08 UTC

/bin/sh -c #(nop) ENV PYTHONIOENCODING=UTF-8

2019-03-02 14:19:06 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends tk-dev && rm -rf /var/lib/apt/lists/*

2019-03-02 14:19:06 UTC

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

2019-03-02 14:19:06 UTC

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

2019-03-02 14:21:47 UTC

/bin/sh -c set -ex && 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 && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-shared --enable-unicode=ucs4 && make -j "$(nproc)" && make install && ldconfig && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' + && rm -rf /usr/src/python && python2 --version

2019-03-02 14:21:47 UTC

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

2019-03-02 14:21:57 UTC

/bin/sh -c set -ex; wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py'; 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 \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2019-03-02 14:22:01 UTC

/bin/sh -c pip install --no-cache-dir virtualenv

2019-03-02 14:22:02 UTC

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

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