2017-01-15 18:03:58 UTC
411 MB
97FC712E4C024BBEA48A61ED3A5CA953F73C700D
LANGC.UTF-8
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYTHON_PIP_VERSION9.0.1
PYTHON_VERSION3.5.2
[#000] sha256:75a822cd7888e394c49828b951061402d31745f596b1f502758570f2d0ee79e2 - 11.91% (49 MB)
[#001] sha256:57de64c72267e88e952b064236cb906c7626f7c07a1a2d5900cf6953e72632b3 - 4.3% (17.7 MB)
[#002] sha256:4306be1e8943b446026b96c2ef7b3ab8471c760774fd1cd11334df7084fed57b - 9.85% (40.5 MB)
[#003] sha256:871436ab7225503e9e951a7acb7b1689a91a60d033bf8cbabcd40fe5ca4cfc87 - 30.1% (124 MB)
[#004] sha256:37c937b0ca47b266ccbbf916387a97494f7a949105887b9ff3afd3f4dbe8545a - 0.67% (2.76 MB)
[#005] sha256:2172fb7edb3a1bb61ea1e94311389a98aae9e31440fc9041c9adc75a17eb9341 - 4.75% (19.5 MB)
[#006] sha256:dcec4e4061aba040e40b324ea8c444ba4bb960ce72aa40283cb4ab75baa58df6 - 0.0% (268 Bytes)
[#007] sha256:fed50e8aa224f5fa30bde0067ceed8b92be651825e69d06b6ce47af7ca8fe446 - 0.0% (155 Bytes)
[#008] sha256:a68920fa6adadad3d9933e78b057f6170428e02f2c100a4dc963a2d740a8c5f3 - 0.0% (1.65 KB)
[#009] sha256:fe0b3564ae3fb1c54767d319d3eb4bbc1faa33aedca6d1db6fa299213f17eebb - 19.46% (80.1 MB)
[#010] sha256:d6e1ec2009b82509de89a2dc92c29a3ee86ee15674e1b99beb4ee1e2a4b0a80c - 0.0% (4.45 KB)
[#011] sha256:29fab5218d0625c830446ffd23a6611f6c563601130d0ff19b5b845fa01354ea - 17.33% (71.3 MB)
[#012] sha256:1b38e9451b701aae336adcef1efce9fd8ea9185167c8aa9bc291b6661a6570d5 - 1.63% (6.71 MB)
/bin/sh -c #(nop) ADD file:1d214d2782eaccc743b8d683ccecf2f87f12a0ecdfbcd6fdf4943ce616f23870 in /
2016-12-13 22:10:59 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2016-12-13 23:00:11 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl wget && rm -rf /var/lib/apt/lists/*
2016-12-13 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/*
2016-12-15 18:59:13 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends autoconf automake bzip2 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 libmysqlclient-dev libncurses-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 && rm -rf /var/lib/apt/lists/*
2016-12-16 03:06:42 UTC/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2016-12-16 03:06:43 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2016-12-16 03:06:51 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends tcl tk && rm -rf /var/lib/apt/lists/*
2016-12-16 03:11:22 UTC/bin/sh -c #(nop) ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
2016-12-16 03:11:22 UTC/bin/sh -c #(nop) ENV PYTHON_VERSION=3.5.2
2016-12-16 03:11:23 UTC/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=9.0.1
2016-12-16 03:12:56 UTC/bin/sh -c set -ex && buildDeps=' 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 -r "$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 && ./configure --enable-loadable-sqlite-extensions --enable-shared && make -j$(nproc) && make install && ldconfig && if [ ! -e /usr/local/bin/pip3 ]; then : && wget -O /tmp/get-pip.py 'https://bootstrap.pypa.io/get-pip.py' && python3 /tmp/get-pip.py "pip==$PYTHON_PIP_VERSION" && rm /tmp/get-pip.py ; fi && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" && [ "$(pip list |tac|tac| awk -F '[ ()]+' '$1 == "pip" { print $2; exit }')" = "$PYTHON_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 '{}' + && apt-get purge -y --auto-remove $buildDeps && rm -rf /usr/src/python ~/.cache
2016-12-16 03:12:56 UTC/bin/sh -c cd /usr/local/bin && { [ -e easy_install ] || ln -s easy_install-* easy_install; } && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config
2016-12-16 03:12:57 UTC/bin/sh -c #(nop) CMD ["python3"]
2017-01-15 17:38:20 UTC/bin/sh -c #(nop) MAINTAINER Paulus Schoutsen <[email protected]>
2017-01-15 17:38:24 UTC/bin/sh -c #(nop) VOLUME [/config]
2017-01-15 17:38:29 UTC/bin/sh -c mkdir -p /usr/src/app
2017-01-15 17:38:33 UTC/bin/sh -c #(nop) WORKDIR /usr/src/app
2017-01-15 17:38:38 UTC/bin/sh -c #(nop) COPY multi:af766972343c98d9135dc3366173b577a4d615db84dc8817cc77e86e97866f88 in script/
2017-01-15 17:49:23 UTC/bin/sh -c script/setup_docker_prereqs
2017-01-15 17:49:28 UTC/bin/sh -c #(nop) COPY file:b1f85b31882054757b7033a5d5beca513e70b4474d4adaa0fc86f83206e04010 in requirements_all.txt
2017-01-15 18:03:40 UTC/bin/sh -c pip3 install --no-cache-dir -r requirements_all.txt && pip3 install --no-cache-dir mysqlclient psycopg2 uvloop
2017-01-15 18:03:51 UTC/bin/sh -c #(nop) COPY dir:253bbd0a668f3e8d8dc6e4ad3ec2a2cb1789dd31b28b90964b75c56225138e72 in .
2017-01-15 18:03:58 UTC/bin/sh -c #(nop) CMD ["python" "-m" "homeassistant" "--config" "/config"]
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.