Explorar o código

Run update-tag-details.sh

Docker Library Bot %!s(int64=9) %!d(string=hai) anos
pai
achega
c41060211a
Modificáronse 5 ficheiros con 691 adicións e 713 borrados
  1. 44 48
      python/tag-details.md
  2. 44 44
      rocket.chat/tag-details.md
  3. 390 390
      solr/tag-details.md
  4. 160 160
      spiped/tag-details.md
  5. 53 71
      thrift/tag-details.md

+ 44 - 48
python/tag-details.md

@@ -275,7 +275,7 @@ CMD ["python2"]
 ## `python:2.7.12-slim`
 ## `python:2.7.12-slim`
 
 
 ```console
 ```console
-$ docker pull python@sha256:f372e31283cad5260857aa34e6c89b93d830ef8c2425955bfd3d0d09c1b31c7d
+$ docker pull python@sha256:e2ae830268cbc35090a40044e55a219624866b8284d1f4b9dd2179ff42a9b511
 ```
 ```
 
 
 -	Platforms:
 -	Platforms:
@@ -285,49 +285,47 @@ $ docker pull python@sha256:f372e31283cad5260857aa34e6c89b93d830ef8c2425955bfd3d
 
 
 -	Docker Version: 1.10.3
 -	Docker Version: 1.10.3
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **72.8 MB (72801159 bytes)**  
+-	Total Size: **72.8 MB (72754314 bytes)**  
 	(compressed transfer size, not on-disk size)
 	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:2c7de1f97dc17baae91459275aee7912fb8533771f69c65ca0054366d2af2175`
+-	Image ID: `sha256:ac218af22ad1668c143e788f5590d5c8b00a3dc8d98473299b8ea9f7bebdd1c3`
 -	Default Command: `["python2"]`
 -	Default Command: `["python2"]`
 
 
 ```dockerfile
 ```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
+# Thu, 28 Jul 2016 17:47:54 GMT
+ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
+# Thu, 28 Jul 2016 17:47:55 GMT
 CMD ["/bin/bash"]
 CMD ["/bin/bash"]
-# Fri, 10 Jun 2016 18:44:45 GMT
-RUN apt-get purge -y python.*
-# Fri, 10 Jun 2016 18:44:45 GMT
+# Mon, 01 Aug 2016 23:32:19 GMT
 ENV LANG=C.UTF-8
 ENV LANG=C.UTF-8
-# Fri, 10 Jun 2016 20:30:15 GMT
+# Mon, 01 Aug 2016 23:33:28 GMT
 RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		libsqlite3-0 		libssl1.0.0 	&& rm -rf /var/lib/apt/lists/*
 RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		libsqlite3-0 		libssl1.0.0 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 10 Jun 2016 20:30:15 GMT
+# Mon, 01 Aug 2016 23:33:29 GMT
 ENV GPG_KEY=C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
 ENV GPG_KEY=C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
-# Tue, 28 Jun 2016 23:01:59 GMT
+# Mon, 01 Aug 2016 23:33:30 GMT
 ENV PYTHON_VERSION=2.7.12
 ENV PYTHON_VERSION=2.7.12
-# Tue, 28 Jun 2016 23:01:59 GMT
+# Mon, 01 Aug 2016 23:33:30 GMT
 ENV PYTHON_PIP_VERSION=8.1.2
 ENV PYTHON_PIP_VERSION=8.1.2
-# Tue, 19 Jul 2016 20:11:23 GMT
+# Mon, 01 Aug 2016 23:37:57 GMT
 RUN set -ex 	&& buildDeps=' 		curl 		gcc 		libbz2-dev 		libc6-dev 		libncurses-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tcl-dev 		tk-dev 		xz-utils 		zlib1g-dev 	' 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.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-shared 		--enable-unicode=ucs4 	&& make -j$(nproc) 	&& make install 	&& ldconfig 	&& curl -fSL 'https://bootstrap.pypa.io/get-pip.py' | python2 	&& pip install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION 	&& [ "$(pip list | 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
 RUN set -ex 	&& buildDeps=' 		curl 		gcc 		libbz2-dev 		libc6-dev 		libncurses-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tcl-dev 		tk-dev 		xz-utils 		zlib1g-dev 	' 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.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-shared 		--enable-unicode=ucs4 	&& make -j$(nproc) 	&& make install 	&& ldconfig 	&& curl -fSL 'https://bootstrap.pypa.io/get-pip.py' | python2 	&& pip install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION 	&& [ "$(pip list | 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
-# Tue, 19 Jul 2016 20:11:24 GMT
+# Mon, 01 Aug 2016 23:37:58 GMT
 CMD ["python2"]
 CMD ["python2"]
 ```
 ```
 
 
 -	Layers:
 -	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`  
-		Last Modified: Tue, 28 Jun 2016 23:30:34 GMT  
-		Size: 3.3 MB (3336139 bytes)
-	-	`sha256:d59b56cfc4bf0112cc2b5e7572bc74226e60628de2553ddf7727ccde6aab4dcf`  
-		Last Modified: Tue, 19 Jul 2016 21:37:44 GMT  
-		Size: 18.1 MB (18112485 bytes)
+	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
+		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
+		Size: 51.4 MB (51365611 bytes)
+	-	`sha256:dc50b4916ada4a6c686b62ab359c5d316d5172ebc36bcf195a48503aa13c8e95`  
+		Last Modified: Tue, 02 Aug 2016 00:34:03 GMT  
+		Size: 3.3 MB (3306295 bytes)
+	-	`sha256:ea2cd35721483fa0ccb7f1d8ca34e5f128c48944c3d3ab8c372972ce3028a666`  
+		Last Modified: Tue, 02 Aug 2016 00:34:08 GMT  
+		Size: 18.1 MB (18082408 bytes)
 
 
 ## `python:2.7-slim`
 ## `python:2.7-slim`
 
 
 ```console
 ```console
-$ docker pull python@sha256:f372e31283cad5260857aa34e6c89b93d830ef8c2425955bfd3d0d09c1b31c7d
+$ docker pull python@sha256:e2ae830268cbc35090a40044e55a219624866b8284d1f4b9dd2179ff42a9b511
 ```
 ```
 
 
 -	Platforms:
 -	Platforms:
@@ -337,44 +335,42 @@ $ docker pull python@sha256:f372e31283cad5260857aa34e6c89b93d830ef8c2425955bfd3d
 
 
 -	Docker Version: 1.10.3
 -	Docker Version: 1.10.3
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **72.8 MB (72801159 bytes)**  
+-	Total Size: **72.8 MB (72754314 bytes)**  
 	(compressed transfer size, not on-disk size)
 	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:2c7de1f97dc17baae91459275aee7912fb8533771f69c65ca0054366d2af2175`
+-	Image ID: `sha256:ac218af22ad1668c143e788f5590d5c8b00a3dc8d98473299b8ea9f7bebdd1c3`
 -	Default Command: `["python2"]`
 -	Default Command: `["python2"]`
 
 
 ```dockerfile
 ```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
+# Thu, 28 Jul 2016 17:47:54 GMT
+ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
+# Thu, 28 Jul 2016 17:47:55 GMT
 CMD ["/bin/bash"]
 CMD ["/bin/bash"]
-# Fri, 10 Jun 2016 18:44:45 GMT
-RUN apt-get purge -y python.*
-# Fri, 10 Jun 2016 18:44:45 GMT
+# Mon, 01 Aug 2016 23:32:19 GMT
 ENV LANG=C.UTF-8
 ENV LANG=C.UTF-8
-# Fri, 10 Jun 2016 20:30:15 GMT
+# Mon, 01 Aug 2016 23:33:28 GMT
 RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		libsqlite3-0 		libssl1.0.0 	&& rm -rf /var/lib/apt/lists/*
 RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		libsqlite3-0 		libssl1.0.0 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 10 Jun 2016 20:30:15 GMT
+# Mon, 01 Aug 2016 23:33:29 GMT
 ENV GPG_KEY=C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
 ENV GPG_KEY=C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
-# Tue, 28 Jun 2016 23:01:59 GMT
+# Mon, 01 Aug 2016 23:33:30 GMT
 ENV PYTHON_VERSION=2.7.12
 ENV PYTHON_VERSION=2.7.12
-# Tue, 28 Jun 2016 23:01:59 GMT
+# Mon, 01 Aug 2016 23:33:30 GMT
 ENV PYTHON_PIP_VERSION=8.1.2
 ENV PYTHON_PIP_VERSION=8.1.2
-# Tue, 19 Jul 2016 20:11:23 GMT
+# Mon, 01 Aug 2016 23:37:57 GMT
 RUN set -ex 	&& buildDeps=' 		curl 		gcc 		libbz2-dev 		libc6-dev 		libncurses-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tcl-dev 		tk-dev 		xz-utils 		zlib1g-dev 	' 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.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-shared 		--enable-unicode=ucs4 	&& make -j$(nproc) 	&& make install 	&& ldconfig 	&& curl -fSL 'https://bootstrap.pypa.io/get-pip.py' | python2 	&& pip install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION 	&& [ "$(pip list | 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
 RUN set -ex 	&& buildDeps=' 		curl 		gcc 		libbz2-dev 		libc6-dev 		libncurses-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tcl-dev 		tk-dev 		xz-utils 		zlib1g-dev 	' 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.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-shared 		--enable-unicode=ucs4 	&& make -j$(nproc) 	&& make install 	&& ldconfig 	&& curl -fSL 'https://bootstrap.pypa.io/get-pip.py' | python2 	&& pip install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION 	&& [ "$(pip list | 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
-# Tue, 19 Jul 2016 20:11:24 GMT
+# Mon, 01 Aug 2016 23:37:58 GMT
 CMD ["python2"]
 CMD ["python2"]
 ```
 ```
 
 
 -	Layers:
 -	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`  
-		Last Modified: Tue, 28 Jun 2016 23:30:34 GMT  
-		Size: 3.3 MB (3336139 bytes)
-	-	`sha256:d59b56cfc4bf0112cc2b5e7572bc74226e60628de2553ddf7727ccde6aab4dcf`  
-		Last Modified: Tue, 19 Jul 2016 21:37:44 GMT  
-		Size: 18.1 MB (18112485 bytes)
+	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
+		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
+		Size: 51.4 MB (51365611 bytes)
+	-	`sha256:dc50b4916ada4a6c686b62ab359c5d316d5172ebc36bcf195a48503aa13c8e95`  
+		Last Modified: Tue, 02 Aug 2016 00:34:03 GMT  
+		Size: 3.3 MB (3306295 bytes)
+	-	`sha256:ea2cd35721483fa0ccb7f1d8ca34e5f128c48944c3d3ab8c372972ce3028a666`  
+		Last Modified: Tue, 02 Aug 2016 00:34:08 GMT  
+		Size: 18.1 MB (18082408 bytes)
 
 
 ## `python:2-slim`
 ## `python:2-slim`
 
 

+ 44 - 44
rocket.chat/tag-details.md

@@ -256,7 +256,7 @@ CMD ["node" "main.js"]
 ## `rocket.chat:latest`
 ## `rocket.chat:latest`
 
 
 ```console
 ```console
-$ docker pull rocket.chat@sha256:a932b594ed80cd63243f66b08fd847328d5b9a6de9dcbce6991b8e83f167e7a6
+$ docker pull rocket.chat@sha256:70669492f2326aef9afb4d2442db0df0fddd338839d482122cfb1b057a9ad0c2
 ```
 ```
 
 
 -	Platforms:
 -	Platforms:
@@ -266,71 +266,71 @@ $ docker pull rocket.chat@sha256:a932b594ed80cd63243f66b08fd847328d5b9a6de9dcbce
 
 
 -	Docker Version: 1.10.3
 -	Docker Version: 1.10.3
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **121.2 MB (121157940 bytes)**  
+-	Total Size: **121.1 MB (121130151 bytes)**  
 	(compressed transfer size, not on-disk size)
 	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:893dcfceee38ba8a53f5705e1fb945583ae3fd8e0bef6bbe88c4c10ae8906819`
+-	Image ID: `sha256:c1eb2de3f8036c6c6b250a4b837e8a0d1fc794c07e40e7f718a1b27758058819`
 -	Default Command: `["node","main.js"]`
 -	Default Command: `["node","main.js"]`
 
 
 ```dockerfile
 ```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
+# Thu, 28 Jul 2016 17:47:54 GMT
+ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
+# Thu, 28 Jul 2016 17:47:55 GMT
 CMD ["/bin/bash"]
 CMD ["/bin/bash"]
-# Thu, 09 Jun 2016 21:35:50 GMT
+# Thu, 28 Jul 2016 17:57:57 GMT
 RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		curl 		wget 	&& rm -rf /var/lib/apt/lists/*
 RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		curl 		wget 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 10 Jun 2016 21:55:15 GMT
+# Fri, 29 Jul 2016 23:42:49 GMT
 RUN set -ex   && for key in     9554F04D7259F04124DE6B476D5A82AC7E37093B     94AE36675C464D64BAFA68DD7434390BDBE9B9C5     0034A06D9D9B0064CE8ADF6BF1747F4AD2306D93     FD3A5288F042B6850C66B31F09FE44734EB7990E     71DCFD284A79C3B38668286BC97EC7A07EDE3FC1     DD8F2338BAE7501E3DD5AC78C273792F7D83545D     B9AE9905FFD7803F25714661B63B535A4C206CA9     C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8   ; do     gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key";   done
 RUN set -ex   && for key in     9554F04D7259F04124DE6B476D5A82AC7E37093B     94AE36675C464D64BAFA68DD7434390BDBE9B9C5     0034A06D9D9B0064CE8ADF6BF1747F4AD2306D93     FD3A5288F042B6850C66B31F09FE44734EB7990E     71DCFD284A79C3B38668286BC97EC7A07EDE3FC1     DD8F2338BAE7501E3DD5AC78C273792F7D83545D     B9AE9905FFD7803F25714661B63B535A4C206CA9     C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8   ; do     gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key";   done
-# Fri, 24 Jun 2016 01:39:21 GMT
+# Fri, 29 Jul 2016 23:42:50 GMT
 ENV NODE_VERSION=0.10.46
 ENV NODE_VERSION=0.10.46
-# Fri, 24 Jun 2016 01:40:45 GMT
+# Fri, 29 Jul 2016 23:44:06 GMT
 RUN buildDeps='xz-utils'     && set -x     && apt-get update && apt-get install -y $buildDeps --no-install-recommends     && rm -rf /var/lib/apt/lists/*     && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz"     && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc"     && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc     && grep " node-v$NODE_VERSION-linux-x64.tar.xz\$" SHASUMS256.txt | sha256sum -c -     && tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1     && rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt     && apt-get purge -y --auto-remove $buildDeps
 RUN buildDeps='xz-utils'     && set -x     && apt-get update && apt-get install -y $buildDeps --no-install-recommends     && rm -rf /var/lib/apt/lists/*     && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz"     && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc"     && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc     && grep " node-v$NODE_VERSION-linux-x64.tar.xz\$" SHASUMS256.txt | sha256sum -c -     && tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1     && rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt     && apt-get purge -y --auto-remove $buildDeps
-# Fri, 24 Jun 2016 01:40:46 GMT
+# Fri, 29 Jul 2016 23:44:06 GMT
 CMD ["node"]
 CMD ["node"]
-# Fri, 24 Jun 2016 15:36:23 GMT
+# Mon, 01 Aug 2016 23:41:04 GMT
 MAINTAINER [email protected]
 MAINTAINER [email protected]
-# Fri, 24 Jun 2016 15:36:26 GMT
+# Mon, 01 Aug 2016 23:41:06 GMT
 RUN groupadd -r rocketchat &&  useradd -r -g rocketchat rocketchat
 RUN groupadd -r rocketchat &&  useradd -r -g rocketchat rocketchat
-# Fri, 24 Jun 2016 15:36:26 GMT
+# Mon, 01 Aug 2016 23:41:07 GMT
 VOLUME [/app/uploads]
 VOLUME [/app/uploads]
-# Fri, 24 Jun 2016 15:36:29 GMT
+# Mon, 01 Aug 2016 23:41:09 GMT
 RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 0E163286C20D07B9787EBE9FD7F9D0414FD08104
 RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 0E163286C20D07B9787EBE9FD7F9D0414FD08104
-# Fri, 01 Jul 2016 20:51:56 GMT
+# Mon, 01 Aug 2016 23:41:10 GMT
 ENV RC_VERSION=0.35.0
 ENV RC_VERSION=0.35.0
-# Fri, 01 Jul 2016 20:51:57 GMT
+# Mon, 01 Aug 2016 23:41:10 GMT
 WORKDIR /app
 WORKDIR /app
-# Fri, 01 Jul 2016 20:52:14 GMT
+# Mon, 01 Aug 2016 23:41:33 GMT
 RUN curl -fSL "https://rocket.chat/releases/${RC_VERSION}/download" -o rocket.chat.tgz &&  curl -fSL "https://rocket.chat/releases/${RC_VERSION}/asc" -o rocket.chat.tgz.asc &&  gpg --batch --verify rocket.chat.tgz.asc rocket.chat.tgz &&  tar zxvf rocket.chat.tgz &&  rm rocket.chat.tgz rocket.chat.tgz.asc &&  cd bundle/programs/server &&  npm install
 RUN curl -fSL "https://rocket.chat/releases/${RC_VERSION}/download" -o rocket.chat.tgz &&  curl -fSL "https://rocket.chat/releases/${RC_VERSION}/asc" -o rocket.chat.tgz.asc &&  gpg --batch --verify rocket.chat.tgz.asc rocket.chat.tgz &&  tar zxvf rocket.chat.tgz &&  rm rocket.chat.tgz rocket.chat.tgz.asc &&  cd bundle/programs/server &&  npm install
-# Fri, 01 Jul 2016 20:52:16 GMT
+# Mon, 01 Aug 2016 23:41:35 GMT
 USER [rocketchat]
 USER [rocketchat]
-# Fri, 01 Jul 2016 20:52:16 GMT
+# Mon, 01 Aug 2016 23:41:36 GMT
 WORKDIR /app/bundle
 WORKDIR /app/bundle
-# Fri, 01 Jul 2016 20:52:17 GMT
+# Mon, 01 Aug 2016 23:41:37 GMT
 ENV MONGO_URL=mongodb://db:27017/meteor HOME=/tmp PORT=3000 ROOT_URL=http://localhost:3000 Accounts_AvatarStorePath=/app/uploads
 ENV MONGO_URL=mongodb://db:27017/meteor HOME=/tmp PORT=3000 ROOT_URL=http://localhost:3000 Accounts_AvatarStorePath=/app/uploads
-# Fri, 01 Jul 2016 20:52:17 GMT
+# Mon, 01 Aug 2016 23:41:39 GMT
 EXPOSE 3000/tcp
 EXPOSE 3000/tcp
-# Fri, 01 Jul 2016 20:52:18 GMT
+# Mon, 01 Aug 2016 23:41:40 GMT
 CMD ["node" "main.js"]
 CMD ["node" "main.js"]
 ```
 ```
 
 
 -	Layers:
 -	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:ab30c63719b10dd434ddbe896879bd9b637fe4e16749a94d3dc827450dc2a437`  
-		Last Modified: Thu, 09 Jun 2016 21:46:24 GMT  
-		Size: 18.5 MB (18547219 bytes)
-	-	`sha256:29d0bc1e8c52856cc16f64ebf9f841a7ed4108cac5ba3d1f91bc409411c17df7`  
-		Last Modified: Wed, 15 Jun 2016 21:18:32 GMT  
-		Size: 71.9 KB (71854 bytes)
-	-	`sha256:114d740b928affcdef5f1c8969dfcc6990e73466807280ce70a783ba1ee9ae89`  
-		Last Modified: Fri, 24 Jun 2016 01:47:11 GMT  
-		Size: 7.1 MB (7122826 bytes)
-	-	`sha256:8821e508459ca9e00d7bb937a43f629126da25f4d46a9c64931689bf7e665dad`  
-		Last Modified: Fri, 24 Jun 2016 15:36:59 GMT  
-		Size: 2.0 KB (2048 bytes)
-	-	`sha256:11b1f97682ee9a909bb2bb6b410cd9609b1b3f4d1dbaa7fedb3059fcfbb20b40`  
-		Last Modified: Fri, 24 Jun 2016 15:36:59 GMT  
-		Size: 69.3 KB (69289 bytes)
-	-	`sha256:0a8b9244c04c6d82fa6d3c2f99a0f0ff57af9154f2e933038f37cb295a9c9e31`  
-		Last Modified: Fri, 01 Jul 2016 20:52:38 GMT  
-		Size: 44.0 MB (43992169 bytes)
+	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
+		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
+		Size: 51.4 MB (51365611 bytes)
+	-	`sha256:52befadefd24601247558f63fcb2ccd96b79cbc447a148ea1d0aa2719a9ac3b1`  
+		Last Modified: Thu, 28 Jul 2016 21:52:07 GMT  
+		Size: 18.5 MB (18526978 bytes)
+	-	`sha256:47e99d7dcd4fae0ccc58e5f7abc885a0ba385ab1b4276ba4f14cd19fb74603cc`  
+		Last Modified: Mon, 01 Aug 2016 16:35:18 GMT  
+		Size: 71.8 KB (71850 bytes)
+	-	`sha256:23afe470a300de9a429bf820da7a925bac8180e42860a3447871695a9ec7370f`  
+		Last Modified: Mon, 01 Aug 2016 19:36:02 GMT  
+		Size: 7.1 MB (7102246 bytes)
+	-	`sha256:1ebdbbbfbd72edafd20e4623b2edded16c78c1147e2f758ac32c5f62b691674e`  
+		Last Modified: Mon, 01 Aug 2016 23:41:54 GMT  
+		Size: 2.0 KB (2046 bytes)
+	-	`sha256:8e0b9bd3588e3c745b6146fc09a7e0f80fd7777478a10a51c9ee7c5c0e550600`  
+		Last Modified: Mon, 01 Aug 2016 23:41:55 GMT  
+		Size: 69.3 KB (69283 bytes)
+	-	`sha256:3423f0ec7e0d690186fdeba82c53b9ee55ce732c79f826428146ab6fb14b4b2e`  
+		Last Modified: Mon, 01 Aug 2016 23:42:34 GMT  
+		Size: 44.0 MB (43992137 bytes)

A diferenza do arquivo foi suprimida porque é demasiado grande
+ 390 - 390
solr/tag-details.md


+ 160 - 160
spiped/tag-details.md

@@ -14,7 +14,7 @@
 ## `spiped:1.5.0`
 ## `spiped:1.5.0`
 
 
 ```console
 ```console
-$ docker pull spiped@sha256:e28d3a0a5584c13bcecd8e815dd99fbab8d86009a264639c892655dbacd82607
+$ docker pull spiped@sha256:32cd1507b49d2a7185238e3fbc4833b5bfd9a479b0ad16a0f14934d00e464969
 ```
 ```
 
 
 -	Platforms:
 -	Platforms:
@@ -24,72 +24,72 @@ $ docker pull spiped@sha256:e28d3a0a5584c13bcecd8e815dd99fbab8d86009a264639c8926
 
 
 -	Docker Version: 1.10.3
 -	Docker Version: 1.10.3
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **55.6 MB (55644067 bytes)**  
+-	Total Size: **55.6 MB (55616522 bytes)**  
 	(compressed transfer size, not on-disk size)
 	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:ccf2c703fe1d4013addee6e0f10d3fc84c96b6b7dd1c3e9bedc1d4230ed69e45`
+-	Image ID: `sha256:18176a798893ed67168c7db57aa7d075016b5f75f041138699374d671f06d78a`
 -	Entrypoint: `["docker-entrypoint.sh"]`
 -	Entrypoint: `["docker-entrypoint.sh"]`
 -	Default Command: `["spiped"]`
 -	Default Command: `["spiped"]`
 
 
 ```dockerfile
 ```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
+# Thu, 28 Jul 2016 17:47:54 GMT
+ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
+# Thu, 28 Jul 2016 17:47:55 GMT
 CMD ["/bin/bash"]
 CMD ["/bin/bash"]
-# Wed, 20 Jul 2016 22:25:26 GMT
+# Mon, 01 Aug 2016 23:53:17 GMT
 MAINTAINER Tim Düsterhus
 MAINTAINER Tim Düsterhus
-# Wed, 20 Jul 2016 22:25:28 GMT
+# Mon, 01 Aug 2016 23:53:19 GMT
 RUN groupadd -r spiped &&	useradd -r -g spiped spiped
 RUN groupadd -r spiped &&	useradd -r -g spiped spiped
-# Wed, 20 Jul 2016 22:26:19 GMT
+# Mon, 01 Aug 2016 23:54:24 GMT
 RUN apt-get update &&	apt-get install -y libssl1.0.0 --no-install-recommends &&	rm -rf /var/lib/apt/lists/*
 RUN apt-get update &&	apt-get install -y libssl1.0.0 --no-install-recommends &&	rm -rf /var/lib/apt/lists/*
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:25 GMT
 ENV SPIPED_VERSION=1.5.0
 ENV SPIPED_VERSION=1.5.0
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:26 GMT
 ENV SPIPED_DOWNLOAD_URL=https://www.tarsnap.com/spiped/spiped-1.5.0.tgz
 ENV SPIPED_DOWNLOAD_URL=https://www.tarsnap.com/spiped/spiped-1.5.0.tgz
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:27 GMT
 ENV SPIPED_DOWNLOAD_SHA256=b2f74b34fb62fd37d6e2bfc969a209c039b88847e853a49e91768dec625facd7
 ENV SPIPED_DOWNLOAD_SHA256=b2f74b34fb62fd37d6e2bfc969a209c039b88847e853a49e91768dec625facd7
-# Wed, 20 Jul 2016 22:26:21 GMT
+# Mon, 01 Aug 2016 23:54:28 GMT
 COPY file:0f26a499fef90f06070551ff66a17abfb7e814a4f023905e52236c31b216a7bb in /0001-Fix-docker-stop-issue.patch
 COPY file:0f26a499fef90f06070551ff66a17abfb7e814a4f023905e52236c31b216a7bb in /0001-Fix-docker-stop-issue.patch
-# Wed, 20 Jul 2016 22:27:56 GMT
+# Mon, 01 Aug 2016 23:56:18 GMT
 RUN buildDeps='libssl-dev gcc make curl ca-certificates patch' &&	apt-get update && apt-get install -y $buildDeps --no-install-recommends &&	rm -rf /var/lib/apt/lists/* &&	curl -fsSL "$SPIPED_DOWNLOAD_URL" -o spiped.tar.gz &&	echo "$SPIPED_DOWNLOAD_SHA256 spiped.tar.gz" |sha256sum -c - &&	mkdir -p /usr/local/src/spiped &&	tar xzf "spiped.tar.gz" -C /usr/local/src/spiped --strip-components=1 &&	rm "spiped.tar.gz" &&	patch -p1 -d /usr/local/src/spiped/ < /0001-Fix-docker-stop-issue.patch &&	make -C /usr/local/src/spiped &&	make -C /usr/local/src/spiped install &&	rm -rf /usr/local/src/spiped &&	apt-get purge -y --auto-remove $buildDeps
 RUN buildDeps='libssl-dev gcc make curl ca-certificates patch' &&	apt-get update && apt-get install -y $buildDeps --no-install-recommends &&	rm -rf /var/lib/apt/lists/* &&	curl -fsSL "$SPIPED_DOWNLOAD_URL" -o spiped.tar.gz &&	echo "$SPIPED_DOWNLOAD_SHA256 spiped.tar.gz" |sha256sum -c - &&	mkdir -p /usr/local/src/spiped &&	tar xzf "spiped.tar.gz" -C /usr/local/src/spiped --strip-components=1 &&	rm "spiped.tar.gz" &&	patch -p1 -d /usr/local/src/spiped/ < /0001-Fix-docker-stop-issue.patch &&	make -C /usr/local/src/spiped &&	make -C /usr/local/src/spiped install &&	rm -rf /usr/local/src/spiped &&	apt-get purge -y --auto-remove $buildDeps
-# Wed, 20 Jul 2016 22:27:57 GMT
+# Mon, 01 Aug 2016 23:56:19 GMT
 VOLUME [/spiped]
 VOLUME [/spiped]
-# Wed, 20 Jul 2016 22:27:57 GMT
+# Mon, 01 Aug 2016 23:56:19 GMT
 WORKDIR /spiped
 WORKDIR /spiped
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:21 GMT
 COPY multi:cece67136bcb3e9eb15d965c7f2f0aa1577fa83acbd640e2016eb71cc01e0cfa in /usr/local/bin/
 COPY multi:cece67136bcb3e9eb15d965c7f2f0aa1577fa83acbd640e2016eb71cc01e0cfa in /usr/local/bin/
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:22 GMT
 ENTRYPOINT &{["docker-entrypoint.sh"]}
 ENTRYPOINT &{["docker-entrypoint.sh"]}
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:22 GMT
 CMD ["spiped"]
 CMD ["spiped"]
 ```
 ```
 
 
 -	Layers:
 -	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:37f2c593221a17e21ddc4f892d1fd6179549b2d4156c1f883265ac827a272069`  
-		Last Modified: Wed, 20 Jul 2016 22:28:30 GMT  
-		Size: 2.0 KB (2041 bytes)
-	-	`sha256:f6150974ff051c475ed1bcb5794060d9807f8e8f76aece2fbb95f937a99bff25`  
-		Last Modified: Wed, 20 Jul 2016 22:28:28 GMT  
-		Size: 1.7 MB (1710176 bytes)
-	-	`sha256:82929e29724021bffa7dfc21adbe74480682e4e6875f1f1f1e5ebe8055c92806`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 1.2 KB (1230 bytes)
-	-	`sha256:96ffb13589d7755c857e243e3c3a8dbeee904c6c17555ed8d49749e70b6dfcb6`  
-		Last Modified: Wed, 20 Jul 2016 22:28:28 GMT  
-		Size: 2.6 MB (2577649 bytes)
-	-	`sha256:b75753bdd1540b7b94219a386add778bdeb29ff45c2b949e7b8b97e48d1a6aca`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 92.0 B
-	-	`sha256:5a75759e2554ccdd11659123e31e787ea037594a0d27cf1ebdbb9a9d0da7f409`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 344.0 B
+	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
+		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
+		Size: 51.4 MB (51365611 bytes)
+	-	`sha256:0aac57b86a3270429a7a7f3d60877c91cc6aa768f3aef4f9ba272a4d23e0d7c4`  
+		Last Modified: Mon, 01 Aug 2016 23:56:35 GMT  
+		Size: 2.0 KB (2044 bytes)
+	-	`sha256:cbf14cdeebc8340090e65d516ea1e64533c026ac33156b77632065417d296953`  
+		Last Modified: Mon, 01 Aug 2016 23:56:34 GMT  
+		Size: 1.7 MB (1689863 bytes)
+	-	`sha256:34ccc4946ca9e27b0f5f4b1b18064979dd45c97e3fa925730351ff309f7bab99`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 1.2 KB (1229 bytes)
+	-	`sha256:a04746259186a0ec92fd9f03c322e0b0cb62f421273e62410c15f6cb87c0050b`  
+		Last Modified: Mon, 01 Aug 2016 23:56:34 GMT  
+		Size: 2.6 MB (2557335 bytes)
+	-	`sha256:fbd1e79fdf2a7e84dbaf3dd9ceab967eb594255ec378347dec2a0f91091e7b95`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 94.0 B
+	-	`sha256:72d0bb222a624e0baaf819f56c55085902784690015504791af62be2773b0da8`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 346.0 B
 
 
 ## `spiped:1.5`
 ## `spiped:1.5`
 
 
 ```console
 ```console
-$ docker pull spiped@sha256:e28d3a0a5584c13bcecd8e815dd99fbab8d86009a264639c892655dbacd82607
+$ docker pull spiped@sha256:32cd1507b49d2a7185238e3fbc4833b5bfd9a479b0ad16a0f14934d00e464969
 ```
 ```
 
 
 -	Platforms:
 -	Platforms:
@@ -99,72 +99,72 @@ $ docker pull spiped@sha256:e28d3a0a5584c13bcecd8e815dd99fbab8d86009a264639c8926
 
 
 -	Docker Version: 1.10.3
 -	Docker Version: 1.10.3
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **55.6 MB (55644067 bytes)**  
+-	Total Size: **55.6 MB (55616522 bytes)**  
 	(compressed transfer size, not on-disk size)
 	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:ccf2c703fe1d4013addee6e0f10d3fc84c96b6b7dd1c3e9bedc1d4230ed69e45`
+-	Image ID: `sha256:18176a798893ed67168c7db57aa7d075016b5f75f041138699374d671f06d78a`
 -	Entrypoint: `["docker-entrypoint.sh"]`
 -	Entrypoint: `["docker-entrypoint.sh"]`
 -	Default Command: `["spiped"]`
 -	Default Command: `["spiped"]`
 
 
 ```dockerfile
 ```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
+# Thu, 28 Jul 2016 17:47:54 GMT
+ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
+# Thu, 28 Jul 2016 17:47:55 GMT
 CMD ["/bin/bash"]
 CMD ["/bin/bash"]
-# Wed, 20 Jul 2016 22:25:26 GMT
+# Mon, 01 Aug 2016 23:53:17 GMT
 MAINTAINER Tim Düsterhus
 MAINTAINER Tim Düsterhus
-# Wed, 20 Jul 2016 22:25:28 GMT
+# Mon, 01 Aug 2016 23:53:19 GMT
 RUN groupadd -r spiped &&	useradd -r -g spiped spiped
 RUN groupadd -r spiped &&	useradd -r -g spiped spiped
-# Wed, 20 Jul 2016 22:26:19 GMT
+# Mon, 01 Aug 2016 23:54:24 GMT
 RUN apt-get update &&	apt-get install -y libssl1.0.0 --no-install-recommends &&	rm -rf /var/lib/apt/lists/*
 RUN apt-get update &&	apt-get install -y libssl1.0.0 --no-install-recommends &&	rm -rf /var/lib/apt/lists/*
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:25 GMT
 ENV SPIPED_VERSION=1.5.0
 ENV SPIPED_VERSION=1.5.0
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:26 GMT
 ENV SPIPED_DOWNLOAD_URL=https://www.tarsnap.com/spiped/spiped-1.5.0.tgz
 ENV SPIPED_DOWNLOAD_URL=https://www.tarsnap.com/spiped/spiped-1.5.0.tgz
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:27 GMT
 ENV SPIPED_DOWNLOAD_SHA256=b2f74b34fb62fd37d6e2bfc969a209c039b88847e853a49e91768dec625facd7
 ENV SPIPED_DOWNLOAD_SHA256=b2f74b34fb62fd37d6e2bfc969a209c039b88847e853a49e91768dec625facd7
-# Wed, 20 Jul 2016 22:26:21 GMT
+# Mon, 01 Aug 2016 23:54:28 GMT
 COPY file:0f26a499fef90f06070551ff66a17abfb7e814a4f023905e52236c31b216a7bb in /0001-Fix-docker-stop-issue.patch
 COPY file:0f26a499fef90f06070551ff66a17abfb7e814a4f023905e52236c31b216a7bb in /0001-Fix-docker-stop-issue.patch
-# Wed, 20 Jul 2016 22:27:56 GMT
+# Mon, 01 Aug 2016 23:56:18 GMT
 RUN buildDeps='libssl-dev gcc make curl ca-certificates patch' &&	apt-get update && apt-get install -y $buildDeps --no-install-recommends &&	rm -rf /var/lib/apt/lists/* &&	curl -fsSL "$SPIPED_DOWNLOAD_URL" -o spiped.tar.gz &&	echo "$SPIPED_DOWNLOAD_SHA256 spiped.tar.gz" |sha256sum -c - &&	mkdir -p /usr/local/src/spiped &&	tar xzf "spiped.tar.gz" -C /usr/local/src/spiped --strip-components=1 &&	rm "spiped.tar.gz" &&	patch -p1 -d /usr/local/src/spiped/ < /0001-Fix-docker-stop-issue.patch &&	make -C /usr/local/src/spiped &&	make -C /usr/local/src/spiped install &&	rm -rf /usr/local/src/spiped &&	apt-get purge -y --auto-remove $buildDeps
 RUN buildDeps='libssl-dev gcc make curl ca-certificates patch' &&	apt-get update && apt-get install -y $buildDeps --no-install-recommends &&	rm -rf /var/lib/apt/lists/* &&	curl -fsSL "$SPIPED_DOWNLOAD_URL" -o spiped.tar.gz &&	echo "$SPIPED_DOWNLOAD_SHA256 spiped.tar.gz" |sha256sum -c - &&	mkdir -p /usr/local/src/spiped &&	tar xzf "spiped.tar.gz" -C /usr/local/src/spiped --strip-components=1 &&	rm "spiped.tar.gz" &&	patch -p1 -d /usr/local/src/spiped/ < /0001-Fix-docker-stop-issue.patch &&	make -C /usr/local/src/spiped &&	make -C /usr/local/src/spiped install &&	rm -rf /usr/local/src/spiped &&	apt-get purge -y --auto-remove $buildDeps
-# Wed, 20 Jul 2016 22:27:57 GMT
+# Mon, 01 Aug 2016 23:56:19 GMT
 VOLUME [/spiped]
 VOLUME [/spiped]
-# Wed, 20 Jul 2016 22:27:57 GMT
+# Mon, 01 Aug 2016 23:56:19 GMT
 WORKDIR /spiped
 WORKDIR /spiped
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:21 GMT
 COPY multi:cece67136bcb3e9eb15d965c7f2f0aa1577fa83acbd640e2016eb71cc01e0cfa in /usr/local/bin/
 COPY multi:cece67136bcb3e9eb15d965c7f2f0aa1577fa83acbd640e2016eb71cc01e0cfa in /usr/local/bin/
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:22 GMT
 ENTRYPOINT &{["docker-entrypoint.sh"]}
 ENTRYPOINT &{["docker-entrypoint.sh"]}
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:22 GMT
 CMD ["spiped"]
 CMD ["spiped"]
 ```
 ```
 
 
 -	Layers:
 -	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:37f2c593221a17e21ddc4f892d1fd6179549b2d4156c1f883265ac827a272069`  
-		Last Modified: Wed, 20 Jul 2016 22:28:30 GMT  
-		Size: 2.0 KB (2041 bytes)
-	-	`sha256:f6150974ff051c475ed1bcb5794060d9807f8e8f76aece2fbb95f937a99bff25`  
-		Last Modified: Wed, 20 Jul 2016 22:28:28 GMT  
-		Size: 1.7 MB (1710176 bytes)
-	-	`sha256:82929e29724021bffa7dfc21adbe74480682e4e6875f1f1f1e5ebe8055c92806`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 1.2 KB (1230 bytes)
-	-	`sha256:96ffb13589d7755c857e243e3c3a8dbeee904c6c17555ed8d49749e70b6dfcb6`  
-		Last Modified: Wed, 20 Jul 2016 22:28:28 GMT  
-		Size: 2.6 MB (2577649 bytes)
-	-	`sha256:b75753bdd1540b7b94219a386add778bdeb29ff45c2b949e7b8b97e48d1a6aca`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 92.0 B
-	-	`sha256:5a75759e2554ccdd11659123e31e787ea037594a0d27cf1ebdbb9a9d0da7f409`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 344.0 B
+	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
+		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
+		Size: 51.4 MB (51365611 bytes)
+	-	`sha256:0aac57b86a3270429a7a7f3d60877c91cc6aa768f3aef4f9ba272a4d23e0d7c4`  
+		Last Modified: Mon, 01 Aug 2016 23:56:35 GMT  
+		Size: 2.0 KB (2044 bytes)
+	-	`sha256:cbf14cdeebc8340090e65d516ea1e64533c026ac33156b77632065417d296953`  
+		Last Modified: Mon, 01 Aug 2016 23:56:34 GMT  
+		Size: 1.7 MB (1689863 bytes)
+	-	`sha256:34ccc4946ca9e27b0f5f4b1b18064979dd45c97e3fa925730351ff309f7bab99`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 1.2 KB (1229 bytes)
+	-	`sha256:a04746259186a0ec92fd9f03c322e0b0cb62f421273e62410c15f6cb87c0050b`  
+		Last Modified: Mon, 01 Aug 2016 23:56:34 GMT  
+		Size: 2.6 MB (2557335 bytes)
+	-	`sha256:fbd1e79fdf2a7e84dbaf3dd9ceab967eb594255ec378347dec2a0f91091e7b95`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 94.0 B
+	-	`sha256:72d0bb222a624e0baaf819f56c55085902784690015504791af62be2773b0da8`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 346.0 B
 
 
 ## `spiped:1`
 ## `spiped:1`
 
 
 ```console
 ```console
-$ docker pull spiped@sha256:e28d3a0a5584c13bcecd8e815dd99fbab8d86009a264639c892655dbacd82607
+$ docker pull spiped@sha256:32cd1507b49d2a7185238e3fbc4833b5bfd9a479b0ad16a0f14934d00e464969
 ```
 ```
 
 
 -	Platforms:
 -	Platforms:
@@ -174,72 +174,72 @@ $ docker pull spiped@sha256:e28d3a0a5584c13bcecd8e815dd99fbab8d86009a264639c8926
 
 
 -	Docker Version: 1.10.3
 -	Docker Version: 1.10.3
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **55.6 MB (55644067 bytes)**  
+-	Total Size: **55.6 MB (55616522 bytes)**  
 	(compressed transfer size, not on-disk size)
 	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:ccf2c703fe1d4013addee6e0f10d3fc84c96b6b7dd1c3e9bedc1d4230ed69e45`
+-	Image ID: `sha256:18176a798893ed67168c7db57aa7d075016b5f75f041138699374d671f06d78a`
 -	Entrypoint: `["docker-entrypoint.sh"]`
 -	Entrypoint: `["docker-entrypoint.sh"]`
 -	Default Command: `["spiped"]`
 -	Default Command: `["spiped"]`
 
 
 ```dockerfile
 ```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
+# Thu, 28 Jul 2016 17:47:54 GMT
+ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
+# Thu, 28 Jul 2016 17:47:55 GMT
 CMD ["/bin/bash"]
 CMD ["/bin/bash"]
-# Wed, 20 Jul 2016 22:25:26 GMT
+# Mon, 01 Aug 2016 23:53:17 GMT
 MAINTAINER Tim Düsterhus
 MAINTAINER Tim Düsterhus
-# Wed, 20 Jul 2016 22:25:28 GMT
+# Mon, 01 Aug 2016 23:53:19 GMT
 RUN groupadd -r spiped &&	useradd -r -g spiped spiped
 RUN groupadd -r spiped &&	useradd -r -g spiped spiped
-# Wed, 20 Jul 2016 22:26:19 GMT
+# Mon, 01 Aug 2016 23:54:24 GMT
 RUN apt-get update &&	apt-get install -y libssl1.0.0 --no-install-recommends &&	rm -rf /var/lib/apt/lists/*
 RUN apt-get update &&	apt-get install -y libssl1.0.0 --no-install-recommends &&	rm -rf /var/lib/apt/lists/*
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:25 GMT
 ENV SPIPED_VERSION=1.5.0
 ENV SPIPED_VERSION=1.5.0
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:26 GMT
 ENV SPIPED_DOWNLOAD_URL=https://www.tarsnap.com/spiped/spiped-1.5.0.tgz
 ENV SPIPED_DOWNLOAD_URL=https://www.tarsnap.com/spiped/spiped-1.5.0.tgz
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:27 GMT
 ENV SPIPED_DOWNLOAD_SHA256=b2f74b34fb62fd37d6e2bfc969a209c039b88847e853a49e91768dec625facd7
 ENV SPIPED_DOWNLOAD_SHA256=b2f74b34fb62fd37d6e2bfc969a209c039b88847e853a49e91768dec625facd7
-# Wed, 20 Jul 2016 22:26:21 GMT
+# Mon, 01 Aug 2016 23:54:28 GMT
 COPY file:0f26a499fef90f06070551ff66a17abfb7e814a4f023905e52236c31b216a7bb in /0001-Fix-docker-stop-issue.patch
 COPY file:0f26a499fef90f06070551ff66a17abfb7e814a4f023905e52236c31b216a7bb in /0001-Fix-docker-stop-issue.patch
-# Wed, 20 Jul 2016 22:27:56 GMT
+# Mon, 01 Aug 2016 23:56:18 GMT
 RUN buildDeps='libssl-dev gcc make curl ca-certificates patch' &&	apt-get update && apt-get install -y $buildDeps --no-install-recommends &&	rm -rf /var/lib/apt/lists/* &&	curl -fsSL "$SPIPED_DOWNLOAD_URL" -o spiped.tar.gz &&	echo "$SPIPED_DOWNLOAD_SHA256 spiped.tar.gz" |sha256sum -c - &&	mkdir -p /usr/local/src/spiped &&	tar xzf "spiped.tar.gz" -C /usr/local/src/spiped --strip-components=1 &&	rm "spiped.tar.gz" &&	patch -p1 -d /usr/local/src/spiped/ < /0001-Fix-docker-stop-issue.patch &&	make -C /usr/local/src/spiped &&	make -C /usr/local/src/spiped install &&	rm -rf /usr/local/src/spiped &&	apt-get purge -y --auto-remove $buildDeps
 RUN buildDeps='libssl-dev gcc make curl ca-certificates patch' &&	apt-get update && apt-get install -y $buildDeps --no-install-recommends &&	rm -rf /var/lib/apt/lists/* &&	curl -fsSL "$SPIPED_DOWNLOAD_URL" -o spiped.tar.gz &&	echo "$SPIPED_DOWNLOAD_SHA256 spiped.tar.gz" |sha256sum -c - &&	mkdir -p /usr/local/src/spiped &&	tar xzf "spiped.tar.gz" -C /usr/local/src/spiped --strip-components=1 &&	rm "spiped.tar.gz" &&	patch -p1 -d /usr/local/src/spiped/ < /0001-Fix-docker-stop-issue.patch &&	make -C /usr/local/src/spiped &&	make -C /usr/local/src/spiped install &&	rm -rf /usr/local/src/spiped &&	apt-get purge -y --auto-remove $buildDeps
-# Wed, 20 Jul 2016 22:27:57 GMT
+# Mon, 01 Aug 2016 23:56:19 GMT
 VOLUME [/spiped]
 VOLUME [/spiped]
-# Wed, 20 Jul 2016 22:27:57 GMT
+# Mon, 01 Aug 2016 23:56:19 GMT
 WORKDIR /spiped
 WORKDIR /spiped
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:21 GMT
 COPY multi:cece67136bcb3e9eb15d965c7f2f0aa1577fa83acbd640e2016eb71cc01e0cfa in /usr/local/bin/
 COPY multi:cece67136bcb3e9eb15d965c7f2f0aa1577fa83acbd640e2016eb71cc01e0cfa in /usr/local/bin/
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:22 GMT
 ENTRYPOINT &{["docker-entrypoint.sh"]}
 ENTRYPOINT &{["docker-entrypoint.sh"]}
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:22 GMT
 CMD ["spiped"]
 CMD ["spiped"]
 ```
 ```
 
 
 -	Layers:
 -	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:37f2c593221a17e21ddc4f892d1fd6179549b2d4156c1f883265ac827a272069`  
-		Last Modified: Wed, 20 Jul 2016 22:28:30 GMT  
-		Size: 2.0 KB (2041 bytes)
-	-	`sha256:f6150974ff051c475ed1bcb5794060d9807f8e8f76aece2fbb95f937a99bff25`  
-		Last Modified: Wed, 20 Jul 2016 22:28:28 GMT  
-		Size: 1.7 MB (1710176 bytes)
-	-	`sha256:82929e29724021bffa7dfc21adbe74480682e4e6875f1f1f1e5ebe8055c92806`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 1.2 KB (1230 bytes)
-	-	`sha256:96ffb13589d7755c857e243e3c3a8dbeee904c6c17555ed8d49749e70b6dfcb6`  
-		Last Modified: Wed, 20 Jul 2016 22:28:28 GMT  
-		Size: 2.6 MB (2577649 bytes)
-	-	`sha256:b75753bdd1540b7b94219a386add778bdeb29ff45c2b949e7b8b97e48d1a6aca`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 92.0 B
-	-	`sha256:5a75759e2554ccdd11659123e31e787ea037594a0d27cf1ebdbb9a9d0da7f409`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 344.0 B
+	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
+		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
+		Size: 51.4 MB (51365611 bytes)
+	-	`sha256:0aac57b86a3270429a7a7f3d60877c91cc6aa768f3aef4f9ba272a4d23e0d7c4`  
+		Last Modified: Mon, 01 Aug 2016 23:56:35 GMT  
+		Size: 2.0 KB (2044 bytes)
+	-	`sha256:cbf14cdeebc8340090e65d516ea1e64533c026ac33156b77632065417d296953`  
+		Last Modified: Mon, 01 Aug 2016 23:56:34 GMT  
+		Size: 1.7 MB (1689863 bytes)
+	-	`sha256:34ccc4946ca9e27b0f5f4b1b18064979dd45c97e3fa925730351ff309f7bab99`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 1.2 KB (1229 bytes)
+	-	`sha256:a04746259186a0ec92fd9f03c322e0b0cb62f421273e62410c15f6cb87c0050b`  
+		Last Modified: Mon, 01 Aug 2016 23:56:34 GMT  
+		Size: 2.6 MB (2557335 bytes)
+	-	`sha256:fbd1e79fdf2a7e84dbaf3dd9ceab967eb594255ec378347dec2a0f91091e7b95`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 94.0 B
+	-	`sha256:72d0bb222a624e0baaf819f56c55085902784690015504791af62be2773b0da8`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 346.0 B
 
 
 ## `spiped:latest`
 ## `spiped:latest`
 
 
 ```console
 ```console
-$ docker pull spiped@sha256:e28d3a0a5584c13bcecd8e815dd99fbab8d86009a264639c892655dbacd82607
+$ docker pull spiped@sha256:32cd1507b49d2a7185238e3fbc4833b5bfd9a479b0ad16a0f14934d00e464969
 ```
 ```
 
 
 -	Platforms:
 -	Platforms:
@@ -249,67 +249,67 @@ $ docker pull spiped@sha256:e28d3a0a5584c13bcecd8e815dd99fbab8d86009a264639c8926
 
 
 -	Docker Version: 1.10.3
 -	Docker Version: 1.10.3
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **55.6 MB (55644067 bytes)**  
+-	Total Size: **55.6 MB (55616522 bytes)**  
 	(compressed transfer size, not on-disk size)
 	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:ccf2c703fe1d4013addee6e0f10d3fc84c96b6b7dd1c3e9bedc1d4230ed69e45`
+-	Image ID: `sha256:18176a798893ed67168c7db57aa7d075016b5f75f041138699374d671f06d78a`
 -	Entrypoint: `["docker-entrypoint.sh"]`
 -	Entrypoint: `["docker-entrypoint.sh"]`
 -	Default Command: `["spiped"]`
 -	Default Command: `["spiped"]`
 
 
 ```dockerfile
 ```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
+# Thu, 28 Jul 2016 17:47:54 GMT
+ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
+# Thu, 28 Jul 2016 17:47:55 GMT
 CMD ["/bin/bash"]
 CMD ["/bin/bash"]
-# Wed, 20 Jul 2016 22:25:26 GMT
+# Mon, 01 Aug 2016 23:53:17 GMT
 MAINTAINER Tim Düsterhus
 MAINTAINER Tim Düsterhus
-# Wed, 20 Jul 2016 22:25:28 GMT
+# Mon, 01 Aug 2016 23:53:19 GMT
 RUN groupadd -r spiped &&	useradd -r -g spiped spiped
 RUN groupadd -r spiped &&	useradd -r -g spiped spiped
-# Wed, 20 Jul 2016 22:26:19 GMT
+# Mon, 01 Aug 2016 23:54:24 GMT
 RUN apt-get update &&	apt-get install -y libssl1.0.0 --no-install-recommends &&	rm -rf /var/lib/apt/lists/*
 RUN apt-get update &&	apt-get install -y libssl1.0.0 --no-install-recommends &&	rm -rf /var/lib/apt/lists/*
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:25 GMT
 ENV SPIPED_VERSION=1.5.0
 ENV SPIPED_VERSION=1.5.0
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:26 GMT
 ENV SPIPED_DOWNLOAD_URL=https://www.tarsnap.com/spiped/spiped-1.5.0.tgz
 ENV SPIPED_DOWNLOAD_URL=https://www.tarsnap.com/spiped/spiped-1.5.0.tgz
-# Wed, 20 Jul 2016 22:26:20 GMT
+# Mon, 01 Aug 2016 23:54:27 GMT
 ENV SPIPED_DOWNLOAD_SHA256=b2f74b34fb62fd37d6e2bfc969a209c039b88847e853a49e91768dec625facd7
 ENV SPIPED_DOWNLOAD_SHA256=b2f74b34fb62fd37d6e2bfc969a209c039b88847e853a49e91768dec625facd7
-# Wed, 20 Jul 2016 22:26:21 GMT
+# Mon, 01 Aug 2016 23:54:28 GMT
 COPY file:0f26a499fef90f06070551ff66a17abfb7e814a4f023905e52236c31b216a7bb in /0001-Fix-docker-stop-issue.patch
 COPY file:0f26a499fef90f06070551ff66a17abfb7e814a4f023905e52236c31b216a7bb in /0001-Fix-docker-stop-issue.patch
-# Wed, 20 Jul 2016 22:27:56 GMT
+# Mon, 01 Aug 2016 23:56:18 GMT
 RUN buildDeps='libssl-dev gcc make curl ca-certificates patch' &&	apt-get update && apt-get install -y $buildDeps --no-install-recommends &&	rm -rf /var/lib/apt/lists/* &&	curl -fsSL "$SPIPED_DOWNLOAD_URL" -o spiped.tar.gz &&	echo "$SPIPED_DOWNLOAD_SHA256 spiped.tar.gz" |sha256sum -c - &&	mkdir -p /usr/local/src/spiped &&	tar xzf "spiped.tar.gz" -C /usr/local/src/spiped --strip-components=1 &&	rm "spiped.tar.gz" &&	patch -p1 -d /usr/local/src/spiped/ < /0001-Fix-docker-stop-issue.patch &&	make -C /usr/local/src/spiped &&	make -C /usr/local/src/spiped install &&	rm -rf /usr/local/src/spiped &&	apt-get purge -y --auto-remove $buildDeps
 RUN buildDeps='libssl-dev gcc make curl ca-certificates patch' &&	apt-get update && apt-get install -y $buildDeps --no-install-recommends &&	rm -rf /var/lib/apt/lists/* &&	curl -fsSL "$SPIPED_DOWNLOAD_URL" -o spiped.tar.gz &&	echo "$SPIPED_DOWNLOAD_SHA256 spiped.tar.gz" |sha256sum -c - &&	mkdir -p /usr/local/src/spiped &&	tar xzf "spiped.tar.gz" -C /usr/local/src/spiped --strip-components=1 &&	rm "spiped.tar.gz" &&	patch -p1 -d /usr/local/src/spiped/ < /0001-Fix-docker-stop-issue.patch &&	make -C /usr/local/src/spiped &&	make -C /usr/local/src/spiped install &&	rm -rf /usr/local/src/spiped &&	apt-get purge -y --auto-remove $buildDeps
-# Wed, 20 Jul 2016 22:27:57 GMT
+# Mon, 01 Aug 2016 23:56:19 GMT
 VOLUME [/spiped]
 VOLUME [/spiped]
-# Wed, 20 Jul 2016 22:27:57 GMT
+# Mon, 01 Aug 2016 23:56:19 GMT
 WORKDIR /spiped
 WORKDIR /spiped
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:21 GMT
 COPY multi:cece67136bcb3e9eb15d965c7f2f0aa1577fa83acbd640e2016eb71cc01e0cfa in /usr/local/bin/
 COPY multi:cece67136bcb3e9eb15d965c7f2f0aa1577fa83acbd640e2016eb71cc01e0cfa in /usr/local/bin/
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:22 GMT
 ENTRYPOINT &{["docker-entrypoint.sh"]}
 ENTRYPOINT &{["docker-entrypoint.sh"]}
-# Wed, 20 Jul 2016 22:27:58 GMT
+# Mon, 01 Aug 2016 23:56:22 GMT
 CMD ["spiped"]
 CMD ["spiped"]
 ```
 ```
 
 
 -	Layers:
 -	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:37f2c593221a17e21ddc4f892d1fd6179549b2d4156c1f883265ac827a272069`  
-		Last Modified: Wed, 20 Jul 2016 22:28:30 GMT  
-		Size: 2.0 KB (2041 bytes)
-	-	`sha256:f6150974ff051c475ed1bcb5794060d9807f8e8f76aece2fbb95f937a99bff25`  
-		Last Modified: Wed, 20 Jul 2016 22:28:28 GMT  
-		Size: 1.7 MB (1710176 bytes)
-	-	`sha256:82929e29724021bffa7dfc21adbe74480682e4e6875f1f1f1e5ebe8055c92806`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 1.2 KB (1230 bytes)
-	-	`sha256:96ffb13589d7755c857e243e3c3a8dbeee904c6c17555ed8d49749e70b6dfcb6`  
-		Last Modified: Wed, 20 Jul 2016 22:28:28 GMT  
-		Size: 2.6 MB (2577649 bytes)
-	-	`sha256:b75753bdd1540b7b94219a386add778bdeb29ff45c2b949e7b8b97e48d1a6aca`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 92.0 B
-	-	`sha256:5a75759e2554ccdd11659123e31e787ea037594a0d27cf1ebdbb9a9d0da7f409`  
-		Last Modified: Wed, 20 Jul 2016 22:28:27 GMT  
-		Size: 344.0 B
+	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
+		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
+		Size: 51.4 MB (51365611 bytes)
+	-	`sha256:0aac57b86a3270429a7a7f3d60877c91cc6aa768f3aef4f9ba272a4d23e0d7c4`  
+		Last Modified: Mon, 01 Aug 2016 23:56:35 GMT  
+		Size: 2.0 KB (2044 bytes)
+	-	`sha256:cbf14cdeebc8340090e65d516ea1e64533c026ac33156b77632065417d296953`  
+		Last Modified: Mon, 01 Aug 2016 23:56:34 GMT  
+		Size: 1.7 MB (1689863 bytes)
+	-	`sha256:34ccc4946ca9e27b0f5f4b1b18064979dd45c97e3fa925730351ff309f7bab99`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 1.2 KB (1229 bytes)
+	-	`sha256:a04746259186a0ec92fd9f03c322e0b0cb62f421273e62410c15f6cb87c0050b`  
+		Last Modified: Mon, 01 Aug 2016 23:56:34 GMT  
+		Size: 2.6 MB (2557335 bytes)
+	-	`sha256:fbd1e79fdf2a7e84dbaf3dd9ceab967eb594255ec378347dec2a0f91091e7b95`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 94.0 B
+	-	`sha256:72d0bb222a624e0baaf819f56c55085902784690015504791af62be2773b0da8`  
+		Last Modified: Mon, 01 Aug 2016 23:56:33 GMT  
+		Size: 346.0 B
 
 
 ## `spiped:1.5.0-alpine`
 ## `spiped:1.5.0-alpine`
 
 

+ 53 - 71
thrift/tag-details.md

@@ -9,7 +9,7 @@
 ## `thrift:0.9`
 ## `thrift:0.9`
 
 
 ```console
 ```console
-$ docker pull thrift@sha256:37e597472e873d51b9dd839d75dc622ad15ebc1d1fb9cb228124103973fcaa2b
+$ docker pull thrift@sha256:20bb877a226e5b424d5c2cfd0f1893222aebffb6bff41c6f23a910fe952f9954
 ```
 ```
 
 
 -	Platforms:
 -	Platforms:
@@ -17,52 +17,40 @@ $ docker pull thrift@sha256:37e597472e873d51b9dd839d75dc622ad15ebc1d1fb9cb228124
 
 
 ### `thrift:0.9` - linux; amd64
 ### `thrift:0.9` - linux; amd64
 
 
--	Docker Version: 1.9.1
+-	Docker Version: 1.10.3
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
 -	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **49.1 MB (49069057 bytes)**  
+-	Total Size: **50.6 MB (50603969 bytes)**  
 	(compressed transfer size, not on-disk size)
 	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:b2fde37c8a65c12317e784f362203d0e008525a6cfbee07252bdaa56675b98ad`
+-	Image ID: `sha256:f54f50c48ba442f8f0bde98713e566c9d979cd39a66f1ec309de83638e7646ef`
 -	Default Command: `["thrift"]`
 -	Default Command: `["thrift"]`
 
 
 ```dockerfile
 ```dockerfile
-# Mon, 23 May 2016 22:59:05 GMT
-ADD file:3824d71f52db3031521c744e8cf55498f40520668758c7574cf55cb86574a339 in /
-# Mon, 23 May 2016 22:59:08 GMT
+# Thu, 28 Jul 2016 17:49:29 GMT
+ADD file:0d2a68d1c5a4a52b0bddd8921fe9f3d603a5d69911d4bba61c5e2460e6500d76 in /
+# Thu, 28 Jul 2016 17:49:29 GMT
 CMD ["/bin/bash"]
 CMD ["/bin/bash"]
-# Tue, 24 May 2016 08:47:21 GMT
+# Mon, 01 Aug 2016 23:57:20 GMT
 MAINTAINER Adam Hawkins <[email protected]>
 MAINTAINER Adam Hawkins <[email protected]>
-# Tue, 24 May 2016 08:47:21 GMT
+# Mon, 01 Aug 2016 23:57:21 GMT
 ENV THRIFT_VERSION=0.9.3
 ENV THRIFT_VERSION=0.9.3
-# Tue, 24 May 2016 08:50:49 GMT
+# Tue, 02 Aug 2016 00:01:32 GMT
 RUN buildDeps=" 		automake 		bison 		curl 		flex 		g++ 		libboost-dev 		libboost-filesystem-dev 		libboost-program-options-dev 		libboost-system-dev 		libboost-test-dev 		libevent-dev 		libssl-dev 		libtool 		make 		pkg-config 	"; 	apt-get update && apt-get install -y --no-install-recommends $buildDeps && rm -rf /var/lib/apt/lists/* 	&& curl -sSL "http://apache.mirrors.spacedump.net/thrift/$THRIFT_VERSION/thrift-$THRIFT_VERSION.tar.gz" -o thrift.tar.gz 	&& mkdir -p /usr/src/thrift 	&& tar zxf thrift.tar.gz -C /usr/src/thrift --strip-components=1 	&& rm thrift.tar.gz 	&& cd /usr/src/thrift 	&& ./configure  --without-python --without-cpp 	&& make 	&& make install 	&& cd / 	&& rm -rf /usr/src/thrift 	&& curl -k -sSL "https://storage.googleapis.com/golang/go1.4.linux-amd64.tar.gz" -o go.tar.gz 	&& tar xzf go.tar.gz 	&& rm go.tar.gz 	&& cp go/bin/gofmt /usr/bin/gofmt 	&& rm -rf go 	&& apt-get purge -y --auto-remove $buildDeps
 RUN buildDeps=" 		automake 		bison 		curl 		flex 		g++ 		libboost-dev 		libboost-filesystem-dev 		libboost-program-options-dev 		libboost-system-dev 		libboost-test-dev 		libevent-dev 		libssl-dev 		libtool 		make 		pkg-config 	"; 	apt-get update && apt-get install -y --no-install-recommends $buildDeps && rm -rf /var/lib/apt/lists/* 	&& curl -sSL "http://apache.mirrors.spacedump.net/thrift/$THRIFT_VERSION/thrift-$THRIFT_VERSION.tar.gz" -o thrift.tar.gz 	&& mkdir -p /usr/src/thrift 	&& tar zxf thrift.tar.gz -C /usr/src/thrift --strip-components=1 	&& rm thrift.tar.gz 	&& cd /usr/src/thrift 	&& ./configure  --without-python --without-cpp 	&& make 	&& make install 	&& cd / 	&& rm -rf /usr/src/thrift 	&& curl -k -sSL "https://storage.googleapis.com/golang/go1.4.linux-amd64.tar.gz" -o go.tar.gz 	&& tar xzf go.tar.gz 	&& rm go.tar.gz 	&& cp go/bin/gofmt /usr/bin/gofmt 	&& rm -rf go 	&& apt-get purge -y --auto-remove $buildDeps
-# Tue, 24 May 2016 08:50:50 GMT
+# Tue, 02 Aug 2016 00:01:33 GMT
 CMD ["thrift"]
 CMD ["thrift"]
 ```
 ```
 
 
 -	Layers:
 -	Layers:
-	-	`sha256:47994b92ab73c2e189664beec0969461d790205d969cce06c445fafb777b8267`  
-		Last Modified: Mon, 23 May 2016 23:13:33 GMT  
-		Size: 37.2 MB (37196464 bytes)
-	-	`sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`  
-		Last Modified: Sat, 14 Nov 2015 09:09:44 GMT  
-		Size: 32.0 B
-	-	`sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`  
-		Last Modified: Sat, 14 Nov 2015 09:09:44 GMT  
-		Size: 32.0 B
-	-	`sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`  
-		Last Modified: Sat, 14 Nov 2015 09:09:44 GMT  
-		Size: 32.0 B
-	-	`sha256:f58878b2f5bfdf584f867303fce647603f3da098e899ec28a3c21ee7d112afdf`  
-		Last Modified: Wed, 01 Jun 2016 01:06:10 GMT  
-		Size: 11.9 MB (11872465 bytes)
-	-	`sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`  
-		Last Modified: Sat, 14 Nov 2015 09:09:44 GMT  
-		Size: 32.0 B
+	-	`sha256:5c68a10e9f3f9e2757d1f2b0a51ad5ac41f5395a190bbbe3907a6b6fffa9bcea`  
+		Last Modified: Thu, 28 Jul 2016 17:54:32 GMT  
+		Size: 37.2 MB (37209635 bytes)
+	-	`sha256:0360fe850c08036d0a16e7c4dbd56a2a6103804f03be774cc50de7cde0ce307d`  
+		Last Modified: Tue, 02 Aug 2016 00:01:50 GMT  
+		Size: 13.4 MB (13394334 bytes)
 
 
 ## `thrift:0.9.3`
 ## `thrift:0.9.3`
 
 
 ```console
 ```console
-$ docker pull thrift@sha256:3d6e338367427c31340f31d2bfa56b9fec8fc8ea2733b35d452edcf9a533f71e
+$ docker pull thrift@sha256:20bb877a226e5b424d5c2cfd0f1893222aebffb6bff41c6f23a910fe952f9954
 ```
 ```
 
 
 -	Platforms:
 -	Platforms:
@@ -70,43 +58,40 @@ $ docker pull thrift@sha256:3d6e338367427c31340f31d2bfa56b9fec8fc8ea2733b35d452e
 
 
 ### `thrift:0.9.3` - linux; amd64
 ### `thrift:0.9.3` - linux; amd64
 
 
--	Docker Version: 1.9.1
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v1+json`
--	Total Size: **49.1 MB (49068961 bytes)**  
+-	Docker Version: 1.10.3
+-	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
+-	Total Size: **50.6 MB (50603969 bytes)**  
 	(compressed transfer size, not on-disk size)
 	(compressed transfer size, not on-disk size)
--	Image ID: `ba4ae944148a95180fc466d8130719c4e3e77a62d8e62de1f06a1d38eccb9ca9`
+-	Image ID: `sha256:f54f50c48ba442f8f0bde98713e566c9d979cd39a66f1ec309de83638e7646ef`
 -	Default Command: `["thrift"]`
 -	Default Command: `["thrift"]`
 
 
 ```dockerfile
 ```dockerfile
-# Mon, 23 May 2016 22:59:05 GMT
-ADD file:3824d71f52db3031521c744e8cf55498f40520668758c7574cf55cb86574a339 in /
-# Mon, 23 May 2016 22:59:08 GMT
+# Thu, 28 Jul 2016 17:49:29 GMT
+ADD file:0d2a68d1c5a4a52b0bddd8921fe9f3d603a5d69911d4bba61c5e2460e6500d76 in /
+# Thu, 28 Jul 2016 17:49:29 GMT
 CMD ["/bin/bash"]
 CMD ["/bin/bash"]
-# Tue, 24 May 2016 08:47:21 GMT
+# Mon, 01 Aug 2016 23:57:20 GMT
 MAINTAINER Adam Hawkins <[email protected]>
 MAINTAINER Adam Hawkins <[email protected]>
-# Tue, 24 May 2016 08:47:21 GMT
+# Mon, 01 Aug 2016 23:57:21 GMT
 ENV THRIFT_VERSION=0.9.3
 ENV THRIFT_VERSION=0.9.3
-# Tue, 24 May 2016 08:50:49 GMT
+# Tue, 02 Aug 2016 00:01:32 GMT
 RUN buildDeps=" 		automake 		bison 		curl 		flex 		g++ 		libboost-dev 		libboost-filesystem-dev 		libboost-program-options-dev 		libboost-system-dev 		libboost-test-dev 		libevent-dev 		libssl-dev 		libtool 		make 		pkg-config 	"; 	apt-get update && apt-get install -y --no-install-recommends $buildDeps && rm -rf /var/lib/apt/lists/* 	&& curl -sSL "http://apache.mirrors.spacedump.net/thrift/$THRIFT_VERSION/thrift-$THRIFT_VERSION.tar.gz" -o thrift.tar.gz 	&& mkdir -p /usr/src/thrift 	&& tar zxf thrift.tar.gz -C /usr/src/thrift --strip-components=1 	&& rm thrift.tar.gz 	&& cd /usr/src/thrift 	&& ./configure  --without-python --without-cpp 	&& make 	&& make install 	&& cd / 	&& rm -rf /usr/src/thrift 	&& curl -k -sSL "https://storage.googleapis.com/golang/go1.4.linux-amd64.tar.gz" -o go.tar.gz 	&& tar xzf go.tar.gz 	&& rm go.tar.gz 	&& cp go/bin/gofmt /usr/bin/gofmt 	&& rm -rf go 	&& apt-get purge -y --auto-remove $buildDeps
 RUN buildDeps=" 		automake 		bison 		curl 		flex 		g++ 		libboost-dev 		libboost-filesystem-dev 		libboost-program-options-dev 		libboost-system-dev 		libboost-test-dev 		libevent-dev 		libssl-dev 		libtool 		make 		pkg-config 	"; 	apt-get update && apt-get install -y --no-install-recommends $buildDeps && rm -rf /var/lib/apt/lists/* 	&& curl -sSL "http://apache.mirrors.spacedump.net/thrift/$THRIFT_VERSION/thrift-$THRIFT_VERSION.tar.gz" -o thrift.tar.gz 	&& mkdir -p /usr/src/thrift 	&& tar zxf thrift.tar.gz -C /usr/src/thrift --strip-components=1 	&& rm thrift.tar.gz 	&& cd /usr/src/thrift 	&& ./configure  --without-python --without-cpp 	&& make 	&& make install 	&& cd / 	&& rm -rf /usr/src/thrift 	&& curl -k -sSL "https://storage.googleapis.com/golang/go1.4.linux-amd64.tar.gz" -o go.tar.gz 	&& tar xzf go.tar.gz 	&& rm go.tar.gz 	&& cp go/bin/gofmt /usr/bin/gofmt 	&& rm -rf go 	&& apt-get purge -y --auto-remove $buildDeps
-# Tue, 24 May 2016 08:50:50 GMT
+# Tue, 02 Aug 2016 00:01:33 GMT
 CMD ["thrift"]
 CMD ["thrift"]
 ```
 ```
 
 
 -	Layers:
 -	Layers:
-	-	`sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`  
-		Last Modified: Sat, 14 Nov 2015 09:09:44 GMT  
-		Size: 32.0 B
-	-	`sha256:f58878b2f5bfdf584f867303fce647603f3da098e899ec28a3c21ee7d112afdf`  
-		Last Modified: Wed, 01 Jun 2016 01:06:10 GMT  
-		Size: 11.9 MB (11872465 bytes)
-	-	`sha256:47994b92ab73c2e189664beec0969461d790205d969cce06c445fafb777b8267`  
-		Last Modified: Mon, 23 May 2016 23:13:33 GMT  
-		Size: 37.2 MB (37196464 bytes)
+	-	`sha256:5c68a10e9f3f9e2757d1f2b0a51ad5ac41f5395a190bbbe3907a6b6fffa9bcea`  
+		Last Modified: Thu, 28 Jul 2016 17:54:32 GMT  
+		Size: 37.2 MB (37209635 bytes)
+	-	`sha256:0360fe850c08036d0a16e7c4dbd56a2a6103804f03be774cc50de7cde0ce307d`  
+		Last Modified: Tue, 02 Aug 2016 00:01:50 GMT  
+		Size: 13.4 MB (13394334 bytes)
 
 
 ## `thrift:latest`
 ## `thrift:latest`
 
 
 ```console
 ```console
-$ docker pull thrift@sha256:d24cacf194230dc654780fd9d51e90c76c3a37a1a7226951dfdfe7be0b333014
+$ docker pull thrift@sha256:20bb877a226e5b424d5c2cfd0f1893222aebffb6bff41c6f23a910fe952f9954
 ```
 ```
 
 
 -	Platforms:
 -	Platforms:
@@ -114,35 +99,32 @@ $ docker pull thrift@sha256:d24cacf194230dc654780fd9d51e90c76c3a37a1a7226951dfdf
 
 
 ### `thrift:latest` - linux; amd64
 ### `thrift:latest` - linux; amd64
 
 
--	Docker Version: 1.9.1
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v1+json`
--	Total Size: **49.1 MB (49068961 bytes)**  
+-	Docker Version: 1.10.3
+-	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
+-	Total Size: **50.6 MB (50603969 bytes)**  
 	(compressed transfer size, not on-disk size)
 	(compressed transfer size, not on-disk size)
--	Image ID: `ba4ae944148a95180fc466d8130719c4e3e77a62d8e62de1f06a1d38eccb9ca9`
+-	Image ID: `sha256:f54f50c48ba442f8f0bde98713e566c9d979cd39a66f1ec309de83638e7646ef`
 -	Default Command: `["thrift"]`
 -	Default Command: `["thrift"]`
 
 
 ```dockerfile
 ```dockerfile
-# Mon, 23 May 2016 22:59:05 GMT
-ADD file:3824d71f52db3031521c744e8cf55498f40520668758c7574cf55cb86574a339 in /
-# Mon, 23 May 2016 22:59:08 GMT
+# Thu, 28 Jul 2016 17:49:29 GMT
+ADD file:0d2a68d1c5a4a52b0bddd8921fe9f3d603a5d69911d4bba61c5e2460e6500d76 in /
+# Thu, 28 Jul 2016 17:49:29 GMT
 CMD ["/bin/bash"]
 CMD ["/bin/bash"]
-# Tue, 24 May 2016 08:47:21 GMT
+# Mon, 01 Aug 2016 23:57:20 GMT
 MAINTAINER Adam Hawkins <[email protected]>
 MAINTAINER Adam Hawkins <[email protected]>
-# Tue, 24 May 2016 08:47:21 GMT
+# Mon, 01 Aug 2016 23:57:21 GMT
 ENV THRIFT_VERSION=0.9.3
 ENV THRIFT_VERSION=0.9.3
-# Tue, 24 May 2016 08:50:49 GMT
+# Tue, 02 Aug 2016 00:01:32 GMT
 RUN buildDeps=" 		automake 		bison 		curl 		flex 		g++ 		libboost-dev 		libboost-filesystem-dev 		libboost-program-options-dev 		libboost-system-dev 		libboost-test-dev 		libevent-dev 		libssl-dev 		libtool 		make 		pkg-config 	"; 	apt-get update && apt-get install -y --no-install-recommends $buildDeps && rm -rf /var/lib/apt/lists/* 	&& curl -sSL "http://apache.mirrors.spacedump.net/thrift/$THRIFT_VERSION/thrift-$THRIFT_VERSION.tar.gz" -o thrift.tar.gz 	&& mkdir -p /usr/src/thrift 	&& tar zxf thrift.tar.gz -C /usr/src/thrift --strip-components=1 	&& rm thrift.tar.gz 	&& cd /usr/src/thrift 	&& ./configure  --without-python --without-cpp 	&& make 	&& make install 	&& cd / 	&& rm -rf /usr/src/thrift 	&& curl -k -sSL "https://storage.googleapis.com/golang/go1.4.linux-amd64.tar.gz" -o go.tar.gz 	&& tar xzf go.tar.gz 	&& rm go.tar.gz 	&& cp go/bin/gofmt /usr/bin/gofmt 	&& rm -rf go 	&& apt-get purge -y --auto-remove $buildDeps
 RUN buildDeps=" 		automake 		bison 		curl 		flex 		g++ 		libboost-dev 		libboost-filesystem-dev 		libboost-program-options-dev 		libboost-system-dev 		libboost-test-dev 		libevent-dev 		libssl-dev 		libtool 		make 		pkg-config 	"; 	apt-get update && apt-get install -y --no-install-recommends $buildDeps && rm -rf /var/lib/apt/lists/* 	&& curl -sSL "http://apache.mirrors.spacedump.net/thrift/$THRIFT_VERSION/thrift-$THRIFT_VERSION.tar.gz" -o thrift.tar.gz 	&& mkdir -p /usr/src/thrift 	&& tar zxf thrift.tar.gz -C /usr/src/thrift --strip-components=1 	&& rm thrift.tar.gz 	&& cd /usr/src/thrift 	&& ./configure  --without-python --without-cpp 	&& make 	&& make install 	&& cd / 	&& rm -rf /usr/src/thrift 	&& curl -k -sSL "https://storage.googleapis.com/golang/go1.4.linux-amd64.tar.gz" -o go.tar.gz 	&& tar xzf go.tar.gz 	&& rm go.tar.gz 	&& cp go/bin/gofmt /usr/bin/gofmt 	&& rm -rf go 	&& apt-get purge -y --auto-remove $buildDeps
-# Tue, 24 May 2016 08:50:50 GMT
+# Tue, 02 Aug 2016 00:01:33 GMT
 CMD ["thrift"]
 CMD ["thrift"]
 ```
 ```
 
 
 -	Layers:
 -	Layers:
-	-	`sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`  
-		Last Modified: Sat, 14 Nov 2015 09:09:44 GMT  
-		Size: 32.0 B
-	-	`sha256:f58878b2f5bfdf584f867303fce647603f3da098e899ec28a3c21ee7d112afdf`  
-		Last Modified: Wed, 01 Jun 2016 01:06:10 GMT  
-		Size: 11.9 MB (11872465 bytes)
-	-	`sha256:47994b92ab73c2e189664beec0969461d790205d969cce06c445fafb777b8267`  
-		Last Modified: Mon, 23 May 2016 23:13:33 GMT  
-		Size: 37.2 MB (37196464 bytes)
+	-	`sha256:5c68a10e9f3f9e2757d1f2b0a51ad5ac41f5395a190bbbe3907a6b6fffa9bcea`  
+		Last Modified: Thu, 28 Jul 2016 17:54:32 GMT  
+		Size: 37.2 MB (37209635 bytes)
+	-	`sha256:0360fe850c08036d0a16e7c4dbd56a2a6103804f03be774cc50de7cde0ce307d`  
+		Last Modified: Tue, 02 Aug 2016 00:01:50 GMT  
+		Size: 13.4 MB (13394334 bytes)

Algúns arquivos non se mostraron porque demasiados arquivos cambiaron neste cambio