Namespace
library
Image / Tag
python:3.7.0a4
Content Digest
sha256:7bae5c2728be047b3e3626119c6e31f00773ba31e4cd5d22578e6f2151925a75
Details
Created

2018-01-10 17:12:03 UTC

Size

340 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

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

PYTHON_PIP_VERSION

9.0.1

PYTHON_VERSION

3.7.0a4


Layers

[#000] sha256:50d72515450fee13bee4f8be703ed400c6fc2f1bc9a5699f1d6917eb6dde6aa0 - 12.84% (43.7 MB)

[#001] sha256:b0a9ff72840f920dca068cca81368ea4b369a74d6ec40929d4cb4a6b4e6d2264 - 3.12% (10.6 MB)

[#002] sha256:8c3e33c1d09c88921e13b6b46cc0476040037bbe57b669dbbc9d16f17cde6298 - 1.28% (4.34 MB)

[#003] sha256:ff393180296f30b7b1cf94c5f67f82d434feb08eaff795346b0f5d3fe18c5ab6 - 14.44% (49.2 MB)

[#004] sha256:8ea5318279c9f2c159ea30e29a11732815fc890ad4c36bd02c273984d19a6224 - 61.11% (208 MB)

[#005] sha256:233e412a6104c5321bbf27127b38c81b1cd59c4fbe59296dd10e6e9ba4313f0e - 0.92% (3.15 MB)

[#006] sha256:da5740c7b19eaed21e9995e2da0f2cd31f2ffa859a69224b56cb3376e99969a5 - 5.82% (19.8 MB)

[#007] sha256:05da6f8271bb33fb2f7739c21efa429093ff8775fd4b2f1ab1d235fd97102c74 - 0.0% (240 Bytes)

[#008] sha256:5ddc27e1fe439f8b393a4c8c831e8ca9529c6899705b8eb30999d91602e7f121 - 0.47% (1.59 MB)


History
2017-12-12 14:28:39 UTC

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

2017-12-12 14:28:39 UTC

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

2017-12-13 14:45:59 UTC

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

2017-12-13 14:46:08 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

2017-12-13 14:47:00 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/*

2017-12-13 14:50:10 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 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/*

2017-12-13 15:49:04 UTC

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

2017-12-13 15:49:05 UTC

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

2017-12-13 15:49:19 UTC

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

2017-12-13 15:49:26 UTC

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

2018-01-10 17:09:58 UTC

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

2018-01-10 17:11:57 UTC

/bin/sh -c set -ex && buildDeps=' dpkg-dev tcl-dev tk-dev ' && apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* && 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 --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && 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-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" && make install && ldconfig && apt-get purge -y --auto-remove $buildDeps && 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

2018-01-10 17:11:57 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

2018-01-10 17:11:58 UTC

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

2018-01-10 17:12:02 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

2018-01-10 17:12:03 UTC

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

Details
Created

2018-01-10 22:51:20 UTC

Size

2.81 GB

Content Digest
Environment
PYTHON_PIP_VERSION

9.0.1

PYTHON_RELEASE

3.7.0

PYTHON_VERSION

3.7.0a4


Layers

[#000] sha256:5847a47b8593f7c39aa5e3db09e50b76d42aa8898c0440c70cc9c69747d4c479 - 75.31% (2.12 GB)

[#001] sha256:9f887ccb8077bdc1f1fedd2da6066bb3542c528f5d103b40659ac25785ba4b9b - 22.84% (658 MB)

[#002] sha256:189c9822c1fc60043703fa16f44b1cab80d3a786d35bd6b61628d2b3f1fb9635 - 0.0% (1.17 KB)

[#003] sha256:58a2d4acab24a165eac9a00969de2fa0430266caf666f4bf8f5ad66049c800bf - 0.0% (1.17 KB)

[#004] sha256:f8ddf3bbbc9596ff014dbe2a04b9915807002b8f6a9a7b8bc179a0e5f99bde04 - 0.0% (1.16 KB)

[#005] sha256:ccba0c971c49c062bd0835e83093ad59974f84b1a1babce82f5919f8a5ebc9a3 - 1.55% (44.6 MB)

[#006] sha256:19a18728c2fe48b93ebfa2a8eef338e7f33cdc53807a08c86f154a40e9194d88 - 0.0% (1.17 KB)

[#007] sha256:0ad51d4a685f915a7e6e039fcc38f6ec8edeec4767dbe41a57699d9c4a327939 - 0.3% (8.54 MB)

[#008] sha256:027e3fe15b8c20c80419445483ad27a01887e384e59dd0d0595a97ec6fe5087b - 0.0% (1.16 KB)


History
2017-09-29 14:43:28 UTC

Apply image 10.0.16299.15

2018-01-03 04:46:54 UTC

Install update 10.0.16299.192

2018-01-08 17:27:32 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]

2018-01-10 22:46:01 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.7.0a4

2018-01-10 22:46:01 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_RELEASE=3.7.0

2018-01-10 22:49:55 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'python.exe'; Write-Host 'Installing ...'; Start-Process python.exe -Wait -ArgumentList @( '/quiet', 'InstallAllUsers=1', 'TargetDir=C:\Python', 'PrependPath=1', 'Shortcuts=0', 'Include_doc=0', 'Include_pip=0', 'Include_test=0' ); $env:PATH = [Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' python --version'; python --version; Write-Host 'Removing ...'; Remove-Item python.exe -Force; Write-Host 'Complete.';

2018-01-10 22:49:56 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_PIP_VERSION=9.0.1

2018-01-10 22:51:19 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Installing pip=={0} ...' -f $env:PYTHON_PIP_VERSION); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri 'https://bootstrap.pypa.io/get-pip.py' -OutFile 'get-pip.py'; python get-pip.py --disable-pip-version-check --no-cache-dir ('pip=={0}' -f $env:PYTHON_PIP_VERSION) ; Remove-Item get-pip.py -Force; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.';

2018-01-10 22:51:20 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) CMD ["python"]

Details
Created

2018-01-10 05:12:23 UTC

Size

334 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

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

PYTHON_PIP_VERSION

9.0.1

PYTHON_VERSION

3.7.0a4


Layers

[#000] sha256:723254a2c089166d4bcfa917be0181ddbecd94971ebfe85792d96e7e29be9c68 - 12.87% (43 MB)

[#001] sha256:abe15a44e12f84b4aac20d4f2b450ec8638cc0b176c9130d1802cb4fed17d953 - 3.17% (10.6 MB)

[#002] sha256:409a28e3cc3de08700c9d37c809a6d3aa43dc076402943919f4a78c286c60a0b - 1.24% (4.13 MB)

[#003] sha256:50316693559041b3c6895bce352b10c302f31c074495671a820b689d2ce12baa - 14.27% (47.7 MB)

[#004] sha256:0f46f97746e4df5959e8c821ca69fdd6c0bedd611c1e0ab3b6970f7202b9bb10 - 60.77% (203 MB)

[#005] sha256:fe27feb3d50932bb7ed027555b8206b3e35d98ab2dcc04ae34cafe76f8587be9 - 0.9% (3.02 MB)

[#006] sha256:9f8bf7adc9e4b4518076de5c3c9da1c6d87813ab540b2e567bca000112ed4125 - 6.31% (21.1 MB)

[#007] sha256:8f153994f1185503c99b721c0fe4703a746854492ef7fde3ae2f868a9286e1d4 - 0.0% (241 Bytes)

[#008] sha256:97a9d2f2d75fb620fddbbffd54af2fe24933515c4a1656be1be9a5793043fac5 - 0.48% (1.59 MB)


History
2017-12-12 01:44:20 UTC

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

2017-12-12 01:44:21 UTC

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

2017-12-12 07:54:08 UTC

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

2017-12-12 07:54:15 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

2017-12-12 07:54:45 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/*

2017-12-12 07:56:00 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 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/*

2017-12-12 16:33:37 UTC

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

2017-12-12 16:33:38 UTC

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

2017-12-12 16:33:47 UTC

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

2017-12-12 16:33:47 UTC

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

2018-01-10 05:09:18 UTC

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

2018-01-10 05:12:17 UTC

/bin/sh -c set -ex && buildDeps=' dpkg-dev tcl-dev tk-dev ' && apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* && 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 --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && 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-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" && make install && ldconfig && apt-get purge -y --auto-remove $buildDeps && 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

2018-01-10 05:12:18 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

2018-01-10 05:12:18 UTC

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

2018-01-10 05:12:23 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

2018-01-10 05:12:23 UTC

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

Details
Created

2018-01-10 22:45:54 UTC

Size

5.06 GB

Content Digest
Environment
PYTHON_PIP_VERSION

9.0.1

PYTHON_RELEASE

3.7.0

PYTHON_VERSION

3.7.0a4


Layers

[#000] sha256:3889bb8d808bbae6fa5a33e07093e65c31371bcf9e4c38c21be6b9af52ad1548 - 74.89% (3.79 GB)

[#001] sha256:449343c9d7e2919413898dc8a7e8780ef164b76a3b9dd19de104706edf05113a - 23.99% (1.21 GB)

[#002] sha256:c86d0434e36d69287bea586f96045245d5ee4f04e4e2a5edf6881dbbfdc628c3 - 0.0% (1.17 KB)

[#003] sha256:ccea68d7a63bc736bbfda28b3259106eb24bb1301ff61d52d63f6bd4ccb15f42 - 0.0% (1.17 KB)

[#004] sha256:f6534ca747c89056f5a3d7969460c29f04663a481fb82698169ddc8e87de8334 - 0.0% (1.16 KB)

[#005] sha256:0d5546b92b4790e24f9e57e627514ab54dff8987ff9332dd3f37befb81bef11f - 0.95% (49.2 MB)

[#006] sha256:ab71cce85820073ee4830950cf2cdf6aa38f49a60888fde28fa030727c0ca67a - 0.0% (1.17 KB)

[#007] sha256:721f45a84a8f3faa1191de454575c17cefd41c95b4d8c4230951d0ed97b1f8b4 - 0.17% (8.89 MB)

[#008] sha256:609fe65a3fda0c12f61ca78742a61e8a73353c8d5ca9d03666286145324c6aa1 - 0.0% (1.16 KB)


History
2016-12-13 10:53:31 UTC

Apply image 10.0.14393.0

2018-01-04 20:07:32 UTC

Install update 10.0.14393.2007

2018-01-05 10:02:17 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]

2018-01-10 22:40:31 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.7.0a4

2018-01-10 22:40:32 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_RELEASE=3.7.0

2018-01-10 22:44:14 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'python.exe'; Write-Host 'Installing ...'; Start-Process python.exe -Wait -ArgumentList @( '/quiet', 'InstallAllUsers=1', 'TargetDir=C:\Python', 'PrependPath=1', 'Shortcuts=0', 'Include_doc=0', 'Include_pip=0', 'Include_test=0' ); $env:PATH = [Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' python --version'; python --version; Write-Host 'Removing ...'; Remove-Item python.exe -Force; Write-Host 'Complete.';

2018-01-10 22:44:15 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_PIP_VERSION=9.0.1

2018-01-10 22:45:53 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Installing pip=={0} ...' -f $env:PYTHON_PIP_VERSION); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri 'https://bootstrap.pypa.io/get-pip.py' -OutFile 'get-pip.py'; python get-pip.py --disable-pip-version-check --no-cache-dir ('pip=={0}' -f $env:PYTHON_PIP_VERSION) ; Remove-Item get-pip.py -Force; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.';

2018-01-10 22:45:54 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) CMD ["python"]

Details
Created

2018-01-10 00:01:53 UTC

Size

318 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

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

PYTHON_PIP_VERSION

9.0.1

PYTHON_VERSION

3.7.0a4


Layers

[#000] sha256:b858507a828940bb4f637f38191bc4c62a00a6857fcddefc11c003815277c27d - 13.13% (41.8 MB)

[#001] sha256:74be0ad93d15611aa7313f4b3b2f81efdd2d1cebe0f55d451508e2c2e4f7d55e - 3.06% (9.73 MB)

[#002] sha256:50f61dac7c9bed094566a8a214c493eee51438fae13aa7858d076f887bd66e84 - 1.24% (3.96 MB)

[#003] sha256:93919f9ce5190358c03ece52e0513bd8701cc4a4fbcad0d82423ec0aa138b5b4 - 14.46% (46 MB)

[#004] sha256:f9aa43a8246992796f64258a0de4dc02204effd580897b0e211f42aff379824a - 60.36% (192 MB)

[#005] sha256:a2dd7bee29dce849fcaddd05d3d7ad092a7a2d294d378274956fe389a27da009 - 0.91% (2.89 MB)

[#006] sha256:c6d34d6a0dc4e05db21b5aa5a01376e9bba5d0e7a3cb17899c88ff460fdce091 - 6.34% (20.2 MB)

[#007] sha256:2e6626fb3512e763168a4a69e6d43883628ee567a2754f1cc56de44cebcc4099 - 0.0% (240 Bytes)

[#008] sha256:8a5241447a96c86f30cba7738ae4da51df89b06125f0af8e01a4cc7dac04ab01 - 0.5% (1.59 MB)


History
2017-12-12 21:01:46 UTC

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

2017-12-12 21:01:46 UTC

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

2017-12-12 22:59:42 UTC

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

2017-12-12 22:59:51 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

2017-12-12 23:00:33 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/*

2017-12-12 23:02:22 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 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/*

2017-12-13 00:57:04 UTC

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

2017-12-13 00:57:04 UTC

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

2017-12-13 00:57:16 UTC

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

2017-12-13 00:57:16 UTC

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

2018-01-09 23:59:43 UTC

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

2018-01-10 00:01:43 UTC

/bin/sh -c set -ex && buildDeps=' dpkg-dev tcl-dev tk-dev ' && apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* && 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 --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && 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-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" && make install && ldconfig && apt-get purge -y --auto-remove $buildDeps && 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

2018-01-10 00:01:44 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

2018-01-10 00:01:44 UTC

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

2018-01-10 00:01:52 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

2018-01-10 00:01:53 UTC

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

Details
Created

2018-01-10 08:01:42 UTC

Size

306 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

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

PYTHON_PIP_VERSION

9.0.1

PYTHON_VERSION

3.7.0a4


Layers

[#000] sha256:0e10ef01c84000f6f5865b480436e689e2d437a4a8b63b01d5ce85532872b636 - 13.03% (39.9 MB)

[#001] sha256:6ed40614ea2a08dbc6237155db97d58d7051efa214bab1fd556c4414db68cb7c - 3.06% (9.37 MB)

[#002] sha256:ad0ea8727ac09b97803f430b101f4c67cbf9c7bc372a44c190f5a9719f5fb1e9 - 1.22% (3.73 MB)

[#003] sha256:facba084babd0bca1fb6e0b05f34a2bc16a042cfdb3863d620dd87910bbe902e - 14.43% (44.2 MB)

[#004] sha256:6b98be7e69ceba1d8ac982eeed4ed62c19e27b2ecff5a4e00df3e9e5add17b9c - 60.37% (185 MB)

[#005] sha256:c5b968a7f329f3fc2696a9b0e1f0dc22b396a1c3c96f0656826a67147599b1b4 - 0.9% (2.76 MB)

[#006] sha256:f6e8c075028fc9de9c14746e5fd8ae478c931c4ab0afbb9ff9100cb1cea6bd9d - 6.47% (19.8 MB)

[#007] sha256:7b494a3eeb3f701cef5c54e2e261b033f675eed998453da38695cbd253e65458 - 0.0% (240 Bytes)

[#008] sha256:b802e1387024a73a197616378d5c24e781f7f4025ecbeef5bee6d3a5d60072db - 0.52% (1.59 MB)


History
2017-12-12 13:32:59 UTC

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

2017-12-12 13:32:59 UTC

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

2017-12-12 14:21:12 UTC

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

2017-12-12 14:21:22 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

2017-12-12 14:22:22 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/*

2017-12-12 14:24:41 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 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/*

2017-12-12 15:52:32 UTC

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

2017-12-12 15:52:33 UTC

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

2017-12-12 15:52:41 UTC

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

2017-12-12 15:52:41 UTC

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

2018-01-10 07:59:46 UTC

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

2018-01-10 08:01:33 UTC

/bin/sh -c set -ex && buildDeps=' dpkg-dev tcl-dev tk-dev ' && apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* && 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 --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && 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-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" && make install && ldconfig && apt-get purge -y --auto-remove $buildDeps && 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

2018-01-10 08:01:34 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

2018-01-10 08:01:35 UTC

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

2018-01-10 08:01:42 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

2018-01-10 08:01:42 UTC

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

Details
Created

2018-01-10 11:44:03 UTC

Size

317 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

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

PYTHON_PIP_VERSION

9.0.1

PYTHON_VERSION

3.7.0a4


Layers

[#000] sha256:91ea0aed359111bf5beb30e4bebd50fac25bc40a69e1bb3bf0f8e3c6dcd5fa7f - 12.92% (40.9 MB)

[#001] sha256:fc2797c29bc6ab5e2ad91b16dea60d7b6f0d4fffb5261f539870b43a7ffca40e - 3.03% (9.6 MB)

[#002] sha256:8edcd3d8093caa7ca86f40f4413c1ae7ca97ae1480289f06339fff174a2a7d6a - 1.23% (3.9 MB)

[#003] sha256:9ab5498df96eae5ccabdf778692dc41eeee09793f3792efadf0079545233069c - 14.45% (45.8 MB)

[#004] sha256:b898d058564c6e8f16b8d652e13a9e6a522a70394c4337ef428e6ad430f91804 - 60.38% (191 MB)

[#005] sha256:85e7b04f92f43795bfa4d1d5907beab90ad2df8e39dc2ebdb958c6331ff59c8b - 0.91% (2.87 MB)

[#006] sha256:850240a5b05254602f08292c581c65924712f602db62a8c2a78d2ca704841faf - 6.58% (20.9 MB)

[#007] sha256:44640aca450ae483b2968a4d3a8c2003e343ab8cbfd65b5b66f489f1e2c3be37 - 0.0% (241 Bytes)

[#008] sha256:339e39b0ebfb7f6ff0b6c90b6fec0dba00f5e967892c924556cd57a3524b0dec - 0.5% (1.59 MB)


History
2017-12-12 18:33:14 UTC

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

2017-12-12 18:33:14 UTC

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

2017-12-15 16:14:25 UTC

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

2017-12-15 16:14:42 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

2017-12-15 16:15:58 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/*

2017-12-15 16:25:33 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 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/*

2017-12-16 00:08:15 UTC

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

2017-12-16 00:08:16 UTC

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

2017-12-16 00:08:32 UTC

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

2017-12-16 00:08:33 UTC

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

2018-01-10 11:40:18 UTC

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

2018-01-10 11:43:47 UTC

/bin/sh -c set -ex && buildDeps=' dpkg-dev tcl-dev tk-dev ' && apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* && 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 --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && 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-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" && make install && ldconfig && apt-get purge -y --auto-remove $buildDeps && 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

2018-01-10 11:43:49 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

2018-01-10 11:43:49 UTC

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

2018-01-10 11:44:02 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

2018-01-10 11:44:03 UTC

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

Details
Created

2018-01-10 08:57:07 UTC

Size

330 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

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

PYTHON_PIP_VERSION

9.0.1

PYTHON_VERSION

3.7.0a4


Layers

[#000] sha256:5427ba9c78c891da38836ae1e71d1f22cd1a75cae9cd5a7e1fc55e9b577e3517 - 13.11% (43.3 MB)

[#001] sha256:c378a191e90f6d5b2a6f6d9850e8c81ea101737db5c068add4c764f2be3aced2 - 2.99% (9.86 MB)

[#002] sha256:c26b1cf177268cff23511322d11143dadc3f4326448d8aceedad9b759e57fb13 - 1.24% (4.09 MB)

[#003] sha256:90080349eff61f95b053aa65da87029e4c36cbccd1ac1d78002110d52ab56ba7 - 14.46% (47.7 MB)

[#004] sha256:9f909787018d2a23be7d1caa55bd88212dfb949e6d364f8bcf1c7cb513be318b - 60.33% (199 MB)

[#005] sha256:b6a97c71c4f9650b7780b6466c796f462ffebc51102227df07dffb9e2a65139d - 0.91% (2.99 MB)

[#006] sha256:9cd9a38ecd9a4bbe6882fa9116e43f539e2ec07c999642a9a878cb1358d8ec79 - 6.49% (21.4 MB)

[#007] sha256:db2d770ef0a4e0caf08329e2b98d7854b505a0339825582fa0ba59a674c2467f - 0.0% (241 Bytes)

[#008] sha256:12d7bce570e58081b963bf174fd0ce71c87a200870617e66ad41d2defd7ad89e - 0.48% (1.59 MB)


History
2017-12-12 01:35:21 UTC

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

2017-12-12 01:35:23 UTC

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

2017-12-12 03:32:55 UTC

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

2017-12-12 03:33:52 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

2017-12-12 03:37:25 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/*

2017-12-12 03:50:30 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 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/*

2017-12-12 04:56:53 UTC

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

2017-12-12 04:56:54 UTC

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

2017-12-12 04:57:19 UTC

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

2017-12-12 04:57:20 UTC

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

2018-01-10 08:54:45 UTC

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

2018-01-10 08:56:52 UTC

/bin/sh -c set -ex && buildDeps=' dpkg-dev tcl-dev tk-dev ' && apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* && 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 --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && 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-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" && make install && ldconfig && apt-get purge -y --auto-remove $buildDeps && 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

2018-01-10 08:56:55 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

2018-01-10 08:56:57 UTC

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

2018-01-10 08:57:05 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

2018-01-10 08:57:07 UTC

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

Details
Created

2018-01-10 14:54:24 UTC

Size

328 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

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

PYTHON_PIP_VERSION

9.0.1

PYTHON_VERSION

3.7.0a4


Layers

[#000] sha256:794821622a8cf94cd3f0f66e7708e7aed250701b9f626d2c58e22a73ca6869cf - 13.06% (42.9 MB)

[#001] sha256:ff282cac5e026f80f2d55f6c7a510a9d2a8855bdde39824f93da04f1fd369475 - 3.1% (10.2 MB)

[#002] sha256:04deb7c3aa54f0bb67511a855139b7d6eaeae932480fd568f7889597e870800f - 1.27% (4.16 MB)

[#003] sha256:f7dd8efc8af21b5bb6284436d2189f0d8edb2eeade70328d44174c5cc870aec2 - 14.65% (48.1 MB)

[#004] sha256:e5653edb76bf386ba206cc18c9c600b5941c3f3193a18bd33337777abb955e89 - 59.59% (196 MB)

[#005] sha256:93b04392da4d57e37bcc65cefdbaf16cf8b3d9d96896f659202cbfc3804409f2 - 0.92% (3.02 MB)

[#006] sha256:e24624b8008bb4ffd11f099733c2d826f2c473c94922f13a68acdc1e271f45dc - 6.93% (22.7 MB)

[#007] sha256:33da559b1a58e845c89cae729bf023cd38c8dd61c753faee37f7df9bcec8bb37 - 0.0% (239 Bytes)

[#008] sha256:947894af2516d8fe01086877020bb4fd489575a2485cc5d0ece18590c7315ebf - 0.49% (1.59 MB)


History
2017-12-12 06:25:26 UTC

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

2017-12-12 06:25:27 UTC

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

2017-12-12 06:58:40 UTC

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

2017-12-12 06:58:49 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

2017-12-12 06:59:15 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/*

2017-12-12 07:00:38 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 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/*

2017-12-12 08:36:05 UTC

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

2017-12-12 08:36:05 UTC

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

2017-12-12 08:36:11 UTC

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

2017-12-12 08:36:11 UTC

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

2018-01-10 14:52:58 UTC

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

2018-01-10 14:54:19 UTC

/bin/sh -c set -ex && buildDeps=' dpkg-dev tcl-dev tk-dev ' && apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* && 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 --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && 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-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" && make install && ldconfig && apt-get purge -y --auto-remove $buildDeps && 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

2018-01-10 14:54:19 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

2018-01-10 14:54:19 UTC

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

2018-01-10 14:54:23 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

2018-01-10 14:54:24 UTC

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

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