Run update-tag-details.sh

This commit is contained in:
Docker Library Bot 2016-07-01 15:15:49 -07:00
parent 44e91999b6
commit a763fe3bad
4 changed files with 825 additions and 1291 deletions

View File

@ -10,7 +10,7 @@
## `celery:3.1.23` ## `celery:3.1.23`
```console ```console
$ docker pull celery@sha256:3dc2523ca1503dfb8989c234289d3233699c5d4bbd13a7ca5a5ffac2b733643b $ docker pull celery@sha256:13f166cbbf9d1d4588757f06f2ab943276dda73afece71e808513f1e76ceff62
``` ```
- Platforms: - Platforms:
@ -20,9 +20,9 @@ $ docker pull celery@sha256:3dc2523ca1503dfb8989c234289d3233699c5d4bbd13a7ca5a5f
- 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: **81.6 MB (81575047 bytes)** - Total Size: **81.6 MB (81558583 bytes)**
(compressed transfer size, not on-disk size) (compressed transfer size, not on-disk size)
- Image ID: `sha256:0ecec545f5c403812854e7157433a9a2d077a09fb979f6b5d250a817644d2976` - Image ID: `sha256:ee492aa176ac2932846d8a8c52222c054907f6d0de0702dd7c5f225c5fccfbf7`
- Default Command: `["celery","worker"]` - Default Command: `["celery","worker"]`
```dockerfile ```dockerfile
@ -42,29 +42,29 @@ ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
ENV PYTHON_VERSION=3.4.5 ENV PYTHON_VERSION=3.4.5
# Tue, 28 Jun 2016 23:12:36 GMT # Tue, 28 Jun 2016 23:12:36 GMT
ENV PYTHON_PIP_VERSION=8.1.2 ENV PYTHON_PIP_VERSION=8.1.2
# Tue, 28 Jun 2016 23:16:35 GMT # Fri, 01 Jul 2016 20:28:34 GMT
RUN set -ex && buildDeps=' curl gcc libbz2-dev libc6-dev liblzma-dev libncurses-dev libreadline-dev libsqlite3-dev libssl-dev make 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 && pip3 install --no-cache-dir --upgrade --ignore-installed pip==$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 liblzma-dev libncurses-dev libreadline-dev libsqlite3-dev libssl-dev make 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 && pip3 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, 28 Jun 2016 23:16:37 GMT # Fri, 01 Jul 2016 20:28:35 GMT
RUN cd /usr/local/bin && ln -s easy_install-3.4 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config RUN cd /usr/local/bin && ln -s easy_install-3.4 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config
# Tue, 28 Jun 2016 23:16:37 GMT # Fri, 01 Jul 2016 20:28:36 GMT
CMD ["python3"] CMD ["python3"]
# Tue, 28 Jun 2016 23:54:35 GMT # Fri, 01 Jul 2016 21:45:18 GMT
RUN groupadd user && useradd --create-home --home-dir /home/user -g user user RUN groupadd user && useradd --create-home --home-dir /home/user -g user user
# Tue, 28 Jun 2016 23:54:36 GMT # Fri, 01 Jul 2016 21:45:18 GMT
WORKDIR /home/user WORKDIR /home/user
# Tue, 28 Jun 2016 23:54:40 GMT # Fri, 01 Jul 2016 21:45:20 GMT
RUN pip install redis RUN pip install redis
# Tue, 28 Jun 2016 23:54:40 GMT # Fri, 01 Jul 2016 21:45:21 GMT
ENV CELERY_VERSION=3.1.23 ENV CELERY_VERSION=3.1.23
# Tue, 28 Jun 2016 23:54:49 GMT # Fri, 01 Jul 2016 21:45:28 GMT
RUN pip install celery=="$CELERY_VERSION" RUN pip install celery=="$CELERY_VERSION"
# Tue, 28 Jun 2016 23:54:51 GMT # Fri, 01 Jul 2016 21:45:29 GMT
RUN { echo 'import os'; echo "BROKER_URL = os.environ.get('CELERY_BROKER_URL', 'amqp://')"; } > celeryconfig.py RUN { echo 'import os'; echo "BROKER_URL = os.environ.get('CELERY_BROKER_URL', 'amqp://')"; } > celeryconfig.py
# Tue, 28 Jun 2016 23:54:52 GMT # Fri, 01 Jul 2016 21:45:29 GMT
ENV CELERY_BROKER_URL=amqp://guest@rabbit ENV CELERY_BROKER_URL=amqp://guest@rabbit
# Tue, 28 Jun 2016 23:54:52 GMT # Fri, 01 Jul 2016 21:45:29 GMT
USER [user] USER [user]
# Tue, 28 Jun 2016 23:54:53 GMT # Fri, 01 Jul 2016 21:45:30 GMT
CMD ["celery" "worker"] CMD ["celery" "worker"]
``` ```
@ -75,29 +75,29 @@ CMD ["celery" "worker"]
- `sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f` - `sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`
Last Modified: Tue, 28 Jun 2016 23:30:34 GMT Last Modified: Tue, 28 Jun 2016 23:30:34 GMT
Size: 3.3 MB (3336139 bytes) Size: 3.3 MB (3336139 bytes)
- `sha256:6f3e49e67e1b9b4aca0c528598a35d6de6a73dec67c5b257eb9cef26d100ef5b` - `sha256:25976dd9cc4f4db8b2b1a9e0bd07c8ad97dec40c8ea4437171f74ea581948eb1`
Last Modified: Tue, 28 Jun 2016 23:35:20 GMT Last Modified: Fri, 01 Jul 2016 20:47:36 GMT
Size: 21.0 MB (20975286 bytes) Size: 21.0 MB (20958855 bytes)
- `sha256:e405e2867e7f7387dd6f1e490b10fd5b2f8d792816c08b03a00c037174c51e4d` - `sha256:428f7b4ade875d95344e9ebdca0746e1cc30a44c1e7e4c5c8f3b851b58a47ae3`
Last Modified: Tue, 28 Jun 2016 23:35:13 GMT Last Modified: Fri, 01 Jul 2016 20:47:29 GMT
Size: 267.0 B Size: 268.0 B
- `sha256:f8f06d9a398069a524f2cd64da3c2c539f8312d12629943ed1ff1b293b4f935b` - `sha256:68403e501b69bc52be2520e152ca5c29004bbd2573da43a158e03902fa40c4dd`
Last Modified: Tue, 28 Jun 2016 23:55:01 GMT Last Modified: Fri, 01 Jul 2016 21:45:37 GMT
Size: 4.3 KB (4340 bytes) Size: 4.3 KB (4335 bytes)
- `sha256:f3dc72934f5e07eb7c648b32be57d45ae8016990b1fdb08e0f04363c1d91b6c0` - `sha256:87b228afb33f46122cb26be4153ed04cb07ce55add56255a4078fae29547c5b4`
Last Modified: Tue, 28 Jun 2016 23:55:03 GMT Last Modified: Fri, 01 Jul 2016 21:45:38 GMT
Size: 1.7 MB (1732457 bytes) Size: 1.7 MB (1732358 bytes)
- `sha256:f54391c4e0381bf63e10f4d4b1eae175530cc6e0cac156f877fedd66d2e333ec` - `sha256:61098ebd4f1a55334a99f289a2a9228175076e776c3c2ea9c824fccb4366d571`
Last Modified: Tue, 28 Jun 2016 23:55:03 GMT Last Modified: Fri, 01 Jul 2016 21:45:38 GMT
Size: 4.2 MB (4173790 bytes) Size: 4.2 MB (4173861 bytes)
- `sha256:a18ebf82beca7457abd032d8960b9f12672ea71a6f49d33c17d5a30c3fd62d68` - `sha256:f234587ecfea86c6877d07baa6e2a535f70367ebdf33f0855795e4eedf6a9975`
Last Modified: Tue, 28 Jun 2016 23:55:01 GMT Last Modified: Fri, 01 Jul 2016 21:45:37 GMT
Size: 233.0 B Size: 232.0 B
## `celery:3.1` ## `celery:3.1`
```console ```console
$ docker pull celery@sha256:3dc2523ca1503dfb8989c234289d3233699c5d4bbd13a7ca5a5ffac2b733643b $ docker pull celery@sha256:13f166cbbf9d1d4588757f06f2ab943276dda73afece71e808513f1e76ceff62
``` ```
- Platforms: - Platforms:
@ -107,9 +107,9 @@ $ docker pull celery@sha256:3dc2523ca1503dfb8989c234289d3233699c5d4bbd13a7ca5a5f
- 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: **81.6 MB (81575047 bytes)** - Total Size: **81.6 MB (81558583 bytes)**
(compressed transfer size, not on-disk size) (compressed transfer size, not on-disk size)
- Image ID: `sha256:0ecec545f5c403812854e7157433a9a2d077a09fb979f6b5d250a817644d2976` - Image ID: `sha256:ee492aa176ac2932846d8a8c52222c054907f6d0de0702dd7c5f225c5fccfbf7`
- Default Command: `["celery","worker"]` - Default Command: `["celery","worker"]`
```dockerfile ```dockerfile
@ -129,29 +129,29 @@ ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
ENV PYTHON_VERSION=3.4.5 ENV PYTHON_VERSION=3.4.5
# Tue, 28 Jun 2016 23:12:36 GMT # Tue, 28 Jun 2016 23:12:36 GMT
ENV PYTHON_PIP_VERSION=8.1.2 ENV PYTHON_PIP_VERSION=8.1.2
# Tue, 28 Jun 2016 23:16:35 GMT # Fri, 01 Jul 2016 20:28:34 GMT
RUN set -ex && buildDeps=' curl gcc libbz2-dev libc6-dev liblzma-dev libncurses-dev libreadline-dev libsqlite3-dev libssl-dev make 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 && pip3 install --no-cache-dir --upgrade --ignore-installed pip==$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 liblzma-dev libncurses-dev libreadline-dev libsqlite3-dev libssl-dev make 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 && pip3 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, 28 Jun 2016 23:16:37 GMT # Fri, 01 Jul 2016 20:28:35 GMT
RUN cd /usr/local/bin && ln -s easy_install-3.4 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config RUN cd /usr/local/bin && ln -s easy_install-3.4 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config
# Tue, 28 Jun 2016 23:16:37 GMT # Fri, 01 Jul 2016 20:28:36 GMT
CMD ["python3"] CMD ["python3"]
# Tue, 28 Jun 2016 23:54:35 GMT # Fri, 01 Jul 2016 21:45:18 GMT
RUN groupadd user && useradd --create-home --home-dir /home/user -g user user RUN groupadd user && useradd --create-home --home-dir /home/user -g user user
# Tue, 28 Jun 2016 23:54:36 GMT # Fri, 01 Jul 2016 21:45:18 GMT
WORKDIR /home/user WORKDIR /home/user
# Tue, 28 Jun 2016 23:54:40 GMT # Fri, 01 Jul 2016 21:45:20 GMT
RUN pip install redis RUN pip install redis
# Tue, 28 Jun 2016 23:54:40 GMT # Fri, 01 Jul 2016 21:45:21 GMT
ENV CELERY_VERSION=3.1.23 ENV CELERY_VERSION=3.1.23
# Tue, 28 Jun 2016 23:54:49 GMT # Fri, 01 Jul 2016 21:45:28 GMT
RUN pip install celery=="$CELERY_VERSION" RUN pip install celery=="$CELERY_VERSION"
# Tue, 28 Jun 2016 23:54:51 GMT # Fri, 01 Jul 2016 21:45:29 GMT
RUN { echo 'import os'; echo "BROKER_URL = os.environ.get('CELERY_BROKER_URL', 'amqp://')"; } > celeryconfig.py RUN { echo 'import os'; echo "BROKER_URL = os.environ.get('CELERY_BROKER_URL', 'amqp://')"; } > celeryconfig.py
# Tue, 28 Jun 2016 23:54:52 GMT # Fri, 01 Jul 2016 21:45:29 GMT
ENV CELERY_BROKER_URL=amqp://guest@rabbit ENV CELERY_BROKER_URL=amqp://guest@rabbit
# Tue, 28 Jun 2016 23:54:52 GMT # Fri, 01 Jul 2016 21:45:29 GMT
USER [user] USER [user]
# Tue, 28 Jun 2016 23:54:53 GMT # Fri, 01 Jul 2016 21:45:30 GMT
CMD ["celery" "worker"] CMD ["celery" "worker"]
``` ```
@ -162,29 +162,29 @@ CMD ["celery" "worker"]
- `sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f` - `sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`
Last Modified: Tue, 28 Jun 2016 23:30:34 GMT Last Modified: Tue, 28 Jun 2016 23:30:34 GMT
Size: 3.3 MB (3336139 bytes) Size: 3.3 MB (3336139 bytes)
- `sha256:6f3e49e67e1b9b4aca0c528598a35d6de6a73dec67c5b257eb9cef26d100ef5b` - `sha256:25976dd9cc4f4db8b2b1a9e0bd07c8ad97dec40c8ea4437171f74ea581948eb1`
Last Modified: Tue, 28 Jun 2016 23:35:20 GMT Last Modified: Fri, 01 Jul 2016 20:47:36 GMT
Size: 21.0 MB (20975286 bytes) Size: 21.0 MB (20958855 bytes)
- `sha256:e405e2867e7f7387dd6f1e490b10fd5b2f8d792816c08b03a00c037174c51e4d` - `sha256:428f7b4ade875d95344e9ebdca0746e1cc30a44c1e7e4c5c8f3b851b58a47ae3`
Last Modified: Tue, 28 Jun 2016 23:35:13 GMT Last Modified: Fri, 01 Jul 2016 20:47:29 GMT
Size: 267.0 B Size: 268.0 B
- `sha256:f8f06d9a398069a524f2cd64da3c2c539f8312d12629943ed1ff1b293b4f935b` - `sha256:68403e501b69bc52be2520e152ca5c29004bbd2573da43a158e03902fa40c4dd`
Last Modified: Tue, 28 Jun 2016 23:55:01 GMT Last Modified: Fri, 01 Jul 2016 21:45:37 GMT
Size: 4.3 KB (4340 bytes) Size: 4.3 KB (4335 bytes)
- `sha256:f3dc72934f5e07eb7c648b32be57d45ae8016990b1fdb08e0f04363c1d91b6c0` - `sha256:87b228afb33f46122cb26be4153ed04cb07ce55add56255a4078fae29547c5b4`
Last Modified: Tue, 28 Jun 2016 23:55:03 GMT Last Modified: Fri, 01 Jul 2016 21:45:38 GMT
Size: 1.7 MB (1732457 bytes) Size: 1.7 MB (1732358 bytes)
- `sha256:f54391c4e0381bf63e10f4d4b1eae175530cc6e0cac156f877fedd66d2e333ec` - `sha256:61098ebd4f1a55334a99f289a2a9228175076e776c3c2ea9c824fccb4366d571`
Last Modified: Tue, 28 Jun 2016 23:55:03 GMT Last Modified: Fri, 01 Jul 2016 21:45:38 GMT
Size: 4.2 MB (4173790 bytes) Size: 4.2 MB (4173861 bytes)
- `sha256:a18ebf82beca7457abd032d8960b9f12672ea71a6f49d33c17d5a30c3fd62d68` - `sha256:f234587ecfea86c6877d07baa6e2a535f70367ebdf33f0855795e4eedf6a9975`
Last Modified: Tue, 28 Jun 2016 23:55:01 GMT Last Modified: Fri, 01 Jul 2016 21:45:37 GMT
Size: 233.0 B Size: 232.0 B
## `celery:3` ## `celery:3`
```console ```console
$ docker pull celery@sha256:3dc2523ca1503dfb8989c234289d3233699c5d4bbd13a7ca5a5ffac2b733643b $ docker pull celery@sha256:13f166cbbf9d1d4588757f06f2ab943276dda73afece71e808513f1e76ceff62
``` ```
- Platforms: - Platforms:
@ -194,9 +194,9 @@ $ docker pull celery@sha256:3dc2523ca1503dfb8989c234289d3233699c5d4bbd13a7ca5a5f
- 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: **81.6 MB (81575047 bytes)** - Total Size: **81.6 MB (81558583 bytes)**
(compressed transfer size, not on-disk size) (compressed transfer size, not on-disk size)
- Image ID: `sha256:0ecec545f5c403812854e7157433a9a2d077a09fb979f6b5d250a817644d2976` - Image ID: `sha256:ee492aa176ac2932846d8a8c52222c054907f6d0de0702dd7c5f225c5fccfbf7`
- Default Command: `["celery","worker"]` - Default Command: `["celery","worker"]`
```dockerfile ```dockerfile
@ -216,29 +216,29 @@ ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
ENV PYTHON_VERSION=3.4.5 ENV PYTHON_VERSION=3.4.5
# Tue, 28 Jun 2016 23:12:36 GMT # Tue, 28 Jun 2016 23:12:36 GMT
ENV PYTHON_PIP_VERSION=8.1.2 ENV PYTHON_PIP_VERSION=8.1.2
# Tue, 28 Jun 2016 23:16:35 GMT # Fri, 01 Jul 2016 20:28:34 GMT
RUN set -ex && buildDeps=' curl gcc libbz2-dev libc6-dev liblzma-dev libncurses-dev libreadline-dev libsqlite3-dev libssl-dev make 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 && pip3 install --no-cache-dir --upgrade --ignore-installed pip==$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 liblzma-dev libncurses-dev libreadline-dev libsqlite3-dev libssl-dev make 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 && pip3 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, 28 Jun 2016 23:16:37 GMT # Fri, 01 Jul 2016 20:28:35 GMT
RUN cd /usr/local/bin && ln -s easy_install-3.4 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config RUN cd /usr/local/bin && ln -s easy_install-3.4 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config
# Tue, 28 Jun 2016 23:16:37 GMT # Fri, 01 Jul 2016 20:28:36 GMT
CMD ["python3"] CMD ["python3"]
# Tue, 28 Jun 2016 23:54:35 GMT # Fri, 01 Jul 2016 21:45:18 GMT
RUN groupadd user && useradd --create-home --home-dir /home/user -g user user RUN groupadd user && useradd --create-home --home-dir /home/user -g user user
# Tue, 28 Jun 2016 23:54:36 GMT # Fri, 01 Jul 2016 21:45:18 GMT
WORKDIR /home/user WORKDIR /home/user
# Tue, 28 Jun 2016 23:54:40 GMT # Fri, 01 Jul 2016 21:45:20 GMT
RUN pip install redis RUN pip install redis
# Tue, 28 Jun 2016 23:54:40 GMT # Fri, 01 Jul 2016 21:45:21 GMT
ENV CELERY_VERSION=3.1.23 ENV CELERY_VERSION=3.1.23
# Tue, 28 Jun 2016 23:54:49 GMT # Fri, 01 Jul 2016 21:45:28 GMT
RUN pip install celery=="$CELERY_VERSION" RUN pip install celery=="$CELERY_VERSION"
# Tue, 28 Jun 2016 23:54:51 GMT # Fri, 01 Jul 2016 21:45:29 GMT
RUN { echo 'import os'; echo "BROKER_URL = os.environ.get('CELERY_BROKER_URL', 'amqp://')"; } > celeryconfig.py RUN { echo 'import os'; echo "BROKER_URL = os.environ.get('CELERY_BROKER_URL', 'amqp://')"; } > celeryconfig.py
# Tue, 28 Jun 2016 23:54:52 GMT # Fri, 01 Jul 2016 21:45:29 GMT
ENV CELERY_BROKER_URL=amqp://guest@rabbit ENV CELERY_BROKER_URL=amqp://guest@rabbit
# Tue, 28 Jun 2016 23:54:52 GMT # Fri, 01 Jul 2016 21:45:29 GMT
USER [user] USER [user]
# Tue, 28 Jun 2016 23:54:53 GMT # Fri, 01 Jul 2016 21:45:30 GMT
CMD ["celery" "worker"] CMD ["celery" "worker"]
``` ```
@ -249,29 +249,29 @@ CMD ["celery" "worker"]
- `sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f` - `sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`
Last Modified: Tue, 28 Jun 2016 23:30:34 GMT Last Modified: Tue, 28 Jun 2016 23:30:34 GMT
Size: 3.3 MB (3336139 bytes) Size: 3.3 MB (3336139 bytes)
- `sha256:6f3e49e67e1b9b4aca0c528598a35d6de6a73dec67c5b257eb9cef26d100ef5b` - `sha256:25976dd9cc4f4db8b2b1a9e0bd07c8ad97dec40c8ea4437171f74ea581948eb1`
Last Modified: Tue, 28 Jun 2016 23:35:20 GMT Last Modified: Fri, 01 Jul 2016 20:47:36 GMT
Size: 21.0 MB (20975286 bytes) Size: 21.0 MB (20958855 bytes)
- `sha256:e405e2867e7f7387dd6f1e490b10fd5b2f8d792816c08b03a00c037174c51e4d` - `sha256:428f7b4ade875d95344e9ebdca0746e1cc30a44c1e7e4c5c8f3b851b58a47ae3`
Last Modified: Tue, 28 Jun 2016 23:35:13 GMT Last Modified: Fri, 01 Jul 2016 20:47:29 GMT
Size: 267.0 B Size: 268.0 B
- `sha256:f8f06d9a398069a524f2cd64da3c2c539f8312d12629943ed1ff1b293b4f935b` - `sha256:68403e501b69bc52be2520e152ca5c29004bbd2573da43a158e03902fa40c4dd`
Last Modified: Tue, 28 Jun 2016 23:55:01 GMT Last Modified: Fri, 01 Jul 2016 21:45:37 GMT
Size: 4.3 KB (4340 bytes) Size: 4.3 KB (4335 bytes)
- `sha256:f3dc72934f5e07eb7c648b32be57d45ae8016990b1fdb08e0f04363c1d91b6c0` - `sha256:87b228afb33f46122cb26be4153ed04cb07ce55add56255a4078fae29547c5b4`
Last Modified: Tue, 28 Jun 2016 23:55:03 GMT Last Modified: Fri, 01 Jul 2016 21:45:38 GMT
Size: 1.7 MB (1732457 bytes) Size: 1.7 MB (1732358 bytes)
- `sha256:f54391c4e0381bf63e10f4d4b1eae175530cc6e0cac156f877fedd66d2e333ec` - `sha256:61098ebd4f1a55334a99f289a2a9228175076e776c3c2ea9c824fccb4366d571`
Last Modified: Tue, 28 Jun 2016 23:55:03 GMT Last Modified: Fri, 01 Jul 2016 21:45:38 GMT
Size: 4.2 MB (4173790 bytes) Size: 4.2 MB (4173861 bytes)
- `sha256:a18ebf82beca7457abd032d8960b9f12672ea71a6f49d33c17d5a30c3fd62d68` - `sha256:f234587ecfea86c6877d07baa6e2a535f70367ebdf33f0855795e4eedf6a9975`
Last Modified: Tue, 28 Jun 2016 23:55:01 GMT Last Modified: Fri, 01 Jul 2016 21:45:37 GMT
Size: 233.0 B Size: 232.0 B
## `celery:latest` ## `celery:latest`
```console ```console
$ docker pull celery@sha256:3dc2523ca1503dfb8989c234289d3233699c5d4bbd13a7ca5a5ffac2b733643b $ docker pull celery@sha256:13f166cbbf9d1d4588757f06f2ab943276dda73afece71e808513f1e76ceff62
``` ```
- Platforms: - Platforms:
@ -281,9 +281,9 @@ $ docker pull celery@sha256:3dc2523ca1503dfb8989c234289d3233699c5d4bbd13a7ca5a5f
- 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: **81.6 MB (81575047 bytes)** - Total Size: **81.6 MB (81558583 bytes)**
(compressed transfer size, not on-disk size) (compressed transfer size, not on-disk size)
- Image ID: `sha256:0ecec545f5c403812854e7157433a9a2d077a09fb979f6b5d250a817644d2976` - Image ID: `sha256:ee492aa176ac2932846d8a8c52222c054907f6d0de0702dd7c5f225c5fccfbf7`
- Default Command: `["celery","worker"]` - Default Command: `["celery","worker"]`
```dockerfile ```dockerfile
@ -303,29 +303,29 @@ ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
ENV PYTHON_VERSION=3.4.5 ENV PYTHON_VERSION=3.4.5
# Tue, 28 Jun 2016 23:12:36 GMT # Tue, 28 Jun 2016 23:12:36 GMT
ENV PYTHON_PIP_VERSION=8.1.2 ENV PYTHON_PIP_VERSION=8.1.2
# Tue, 28 Jun 2016 23:16:35 GMT # Fri, 01 Jul 2016 20:28:34 GMT
RUN set -ex && buildDeps=' curl gcc libbz2-dev libc6-dev liblzma-dev libncurses-dev libreadline-dev libsqlite3-dev libssl-dev make 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 && pip3 install --no-cache-dir --upgrade --ignore-installed pip==$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 liblzma-dev libncurses-dev libreadline-dev libsqlite3-dev libssl-dev make 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 && pip3 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, 28 Jun 2016 23:16:37 GMT # Fri, 01 Jul 2016 20:28:35 GMT
RUN cd /usr/local/bin && ln -s easy_install-3.4 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config RUN cd /usr/local/bin && ln -s easy_install-3.4 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config
# Tue, 28 Jun 2016 23:16:37 GMT # Fri, 01 Jul 2016 20:28:36 GMT
CMD ["python3"] CMD ["python3"]
# Tue, 28 Jun 2016 23:54:35 GMT # Fri, 01 Jul 2016 21:45:18 GMT
RUN groupadd user && useradd --create-home --home-dir /home/user -g user user RUN groupadd user && useradd --create-home --home-dir /home/user -g user user
# Tue, 28 Jun 2016 23:54:36 GMT # Fri, 01 Jul 2016 21:45:18 GMT
WORKDIR /home/user WORKDIR /home/user
# Tue, 28 Jun 2016 23:54:40 GMT # Fri, 01 Jul 2016 21:45:20 GMT
RUN pip install redis RUN pip install redis
# Tue, 28 Jun 2016 23:54:40 GMT # Fri, 01 Jul 2016 21:45:21 GMT
ENV CELERY_VERSION=3.1.23 ENV CELERY_VERSION=3.1.23
# Tue, 28 Jun 2016 23:54:49 GMT # Fri, 01 Jul 2016 21:45:28 GMT
RUN pip install celery=="$CELERY_VERSION" RUN pip install celery=="$CELERY_VERSION"
# Tue, 28 Jun 2016 23:54:51 GMT # Fri, 01 Jul 2016 21:45:29 GMT
RUN { echo 'import os'; echo "BROKER_URL = os.environ.get('CELERY_BROKER_URL', 'amqp://')"; } > celeryconfig.py RUN { echo 'import os'; echo "BROKER_URL = os.environ.get('CELERY_BROKER_URL', 'amqp://')"; } > celeryconfig.py
# Tue, 28 Jun 2016 23:54:52 GMT # Fri, 01 Jul 2016 21:45:29 GMT
ENV CELERY_BROKER_URL=amqp://guest@rabbit ENV CELERY_BROKER_URL=amqp://guest@rabbit
# Tue, 28 Jun 2016 23:54:52 GMT # Fri, 01 Jul 2016 21:45:29 GMT
USER [user] USER [user]
# Tue, 28 Jun 2016 23:54:53 GMT # Fri, 01 Jul 2016 21:45:30 GMT
CMD ["celery" "worker"] CMD ["celery" "worker"]
``` ```
@ -336,21 +336,21 @@ CMD ["celery" "worker"]
- `sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f` - `sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`
Last Modified: Tue, 28 Jun 2016 23:30:34 GMT Last Modified: Tue, 28 Jun 2016 23:30:34 GMT
Size: 3.3 MB (3336139 bytes) Size: 3.3 MB (3336139 bytes)
- `sha256:6f3e49e67e1b9b4aca0c528598a35d6de6a73dec67c5b257eb9cef26d100ef5b` - `sha256:25976dd9cc4f4db8b2b1a9e0bd07c8ad97dec40c8ea4437171f74ea581948eb1`
Last Modified: Tue, 28 Jun 2016 23:35:20 GMT Last Modified: Fri, 01 Jul 2016 20:47:36 GMT
Size: 21.0 MB (20975286 bytes) Size: 21.0 MB (20958855 bytes)
- `sha256:e405e2867e7f7387dd6f1e490b10fd5b2f8d792816c08b03a00c037174c51e4d` - `sha256:428f7b4ade875d95344e9ebdca0746e1cc30a44c1e7e4c5c8f3b851b58a47ae3`
Last Modified: Tue, 28 Jun 2016 23:35:13 GMT Last Modified: Fri, 01 Jul 2016 20:47:29 GMT
Size: 267.0 B Size: 268.0 B
- `sha256:f8f06d9a398069a524f2cd64da3c2c539f8312d12629943ed1ff1b293b4f935b` - `sha256:68403e501b69bc52be2520e152ca5c29004bbd2573da43a158e03902fa40c4dd`
Last Modified: Tue, 28 Jun 2016 23:55:01 GMT Last Modified: Fri, 01 Jul 2016 21:45:37 GMT
Size: 4.3 KB (4340 bytes) Size: 4.3 KB (4335 bytes)
- `sha256:f3dc72934f5e07eb7c648b32be57d45ae8016990b1fdb08e0f04363c1d91b6c0` - `sha256:87b228afb33f46122cb26be4153ed04cb07ce55add56255a4078fae29547c5b4`
Last Modified: Tue, 28 Jun 2016 23:55:03 GMT Last Modified: Fri, 01 Jul 2016 21:45:38 GMT
Size: 1.7 MB (1732457 bytes) Size: 1.7 MB (1732358 bytes)
- `sha256:f54391c4e0381bf63e10f4d4b1eae175530cc6e0cac156f877fedd66d2e333ec` - `sha256:61098ebd4f1a55334a99f289a2a9228175076e776c3c2ea9c824fccb4366d571`
Last Modified: Tue, 28 Jun 2016 23:55:03 GMT Last Modified: Fri, 01 Jul 2016 21:45:38 GMT
Size: 4.2 MB (4173790 bytes) Size: 4.2 MB (4173861 bytes)
- `sha256:a18ebf82beca7457abd032d8960b9f12672ea71a6f49d33c17d5a30c3fd62d68` - `sha256:f234587ecfea86c6877d07baa6e2a535f70367ebdf33f0855795e4eedf6a9975`
Last Modified: Tue, 28 Jun 2016 23:55:01 GMT Last Modified: Fri, 01 Jul 2016 21:45:37 GMT
Size: 233.0 B Size: 232.0 B

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@
## `hylang:0.11.1` ## `hylang:0.11.1`
```console ```console
$ docker pull hylang@sha256:665ca0fdf9f5e819b6a5ab903269779f0a360a8563b198111b3ef081a18d8ddb $ docker pull hylang@sha256:416ecbf0854ee1c6e77d669977e830e73b2e7ec731eabf27e9b3a181a1a5a30d
``` ```
- Platforms: - Platforms:
@ -20,9 +20,9 @@ $ docker pull hylang@sha256:665ca0fdf9f5e819b6a5ab903269779f0a360a8563b198111b3e
- 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: **265.2 MB (265173443 bytes)** - Total Size: **265.2 MB (265158843 bytes)**
(compressed transfer size, not on-disk size) (compressed transfer size, not on-disk size)
- Image ID: `sha256:58d2b5181496bd8f8712e5fe0298ba4f133777e4057092e436278a41656c554e` - Image ID: `sha256:d02207e4cde0e8a24c939ab14115cafbdc3bc00752c78ffb012344d1af0ba74a`
- Default Command: `["hy"]` - Default Command: `["hy"]`
```dockerfile ```dockerfile
@ -46,19 +46,19 @@ ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
ENV PYTHON_VERSION=3.5.2 ENV PYTHON_VERSION=3.5.2
# Tue, 28 Jun 2016 23:21:44 GMT # Tue, 28 Jun 2016 23:21:44 GMT
ENV PYTHON_PIP_VERSION=8.1.2 ENV PYTHON_PIP_VERSION=8.1.2
# Tue, 28 Jun 2016 23:23:52 GMT # Fri, 01 Jul 2016 20:35:51 GMT
RUN set -ex && 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 && pip3 install --no-cache-dir --upgrade --ignore-installed pip==$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 '{}' + && rm -rf /usr/src/python ~/.cache RUN set -ex && 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 && pip3 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 '{}' + && rm -rf /usr/src/python ~/.cache
# Tue, 28 Jun 2016 23:23:54 GMT # Fri, 01 Jul 2016 20:35:52 GMT
RUN cd /usr/local/bin && ln -s easy_install-3.5 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config RUN cd /usr/local/bin && ln -s easy_install-3.5 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config
# Tue, 28 Jun 2016 23:23:54 GMT # Fri, 01 Jul 2016 20:35:52 GMT
CMD ["python3"] CMD ["python3"]
# Wed, 29 Jun 2016 00:04:32 GMT # Fri, 01 Jul 2016 21:55:01 GMT
MAINTAINER Paul R. Tagliamonte <paultag@hylang.org> MAINTAINER Paul R. Tagliamonte <paultag@hylang.org>
# Wed, 29 Jun 2016 00:04:33 GMT # Fri, 01 Jul 2016 21:55:02 GMT
ADD dir:866a4ac77e162758d5a87e8e6eeada7a7cc3a0f86d1565f43e2fab5ad260d7f7 in /opt/hylang/hy ADD dir:866a4ac77e162758d5a87e8e6eeada7a7cc3a0f86d1565f43e2fab5ad260d7f7 in /opt/hylang/hy
# Wed, 29 Jun 2016 00:04:39 GMT # Fri, 01 Jul 2016 21:55:08 GMT
RUN pip3 install -e /opt/hylang/hy RUN pip3 install -e /opt/hylang/hy
# Wed, 29 Jun 2016 00:04:39 GMT # Fri, 01 Jul 2016 21:55:08 GMT
CMD ["hy"] CMD ["hy"]
``` ```
@ -78,23 +78,23 @@ CMD ["hy"]
- `sha256:7663bd2e167e1baec490bc208bdf854dae81b324bed9595edecc9136f06da7fe` - `sha256:7663bd2e167e1baec490bc208bdf854dae81b324bed9595edecc9136f06da7fe`
Last Modified: Wed, 15 Jun 2016 21:14:50 GMT Last Modified: Wed, 15 Jun 2016 21:14:50 GMT
Size: 242.5 KB (242498 bytes) Size: 242.5 KB (242498 bytes)
- `sha256:d6069427531211bfdec3d3317092c59790a679787339d2d29f82e59e3ec995a6` - `sha256:fc47c86cd2eabe1eb1362117e34c64c25d1581be338d17f422db012b173f34c9`
Last Modified: Tue, 28 Jun 2016 23:37:04 GMT Last Modified: Fri, 01 Jul 2016 20:49:19 GMT
Size: 20.1 MB (20121310 bytes) Size: 20.1 MB (20106543 bytes)
- `sha256:fb6b2d10f658b325f604f66f7587d1dc72c3e24cf5bb7cdcbfaea19c1a807817` - `sha256:1253703cd472c03a1a0d90cbe8c60232536fd5ef3e5cad005f30a3721428c95f`
Last Modified: Tue, 28 Jun 2016 23:36:57 GMT Last Modified: Fri, 01 Jul 2016 20:49:13 GMT
Size: 265.0 B Size: 266.0 B
- `sha256:5599650fb3f6e75e3218968a13d31771c4fa42383d6bfd578c519e925626b81c` - `sha256:ceae5771730e57ea7c122bb79f7ece3e2c26394ebc5b796c3770fa0fbc36683d`
Last Modified: Wed, 29 Jun 2016 00:04:48 GMT Last Modified: Fri, 01 Jul 2016 21:55:16 GMT
Size: 358.4 KB (358378 bytes) Size: 358.4 KB (358367 bytes)
- `sha256:0a274f8a83e85226f08569ed30af300dcabd724765e25ebb6a99addeadb063cd` - `sha256:f6adabcf858e7aa518b8b7608eea0dc92e5b30056e0cb4e0adf841e7801e2a9b`
Last Modified: Wed, 29 Jun 2016 00:04:48 GMT Last Modified: Fri, 01 Jul 2016 21:55:17 GMT
Size: 2.3 MB (2321484 bytes) Size: 2.3 MB (2321661 bytes)
## `hylang:0.11` ## `hylang:0.11`
```console ```console
$ docker pull hylang@sha256:665ca0fdf9f5e819b6a5ab903269779f0a360a8563b198111b3ef081a18d8ddb $ docker pull hylang@sha256:416ecbf0854ee1c6e77d669977e830e73b2e7ec731eabf27e9b3a181a1a5a30d
``` ```
- Platforms: - Platforms:
@ -104,9 +104,9 @@ $ docker pull hylang@sha256:665ca0fdf9f5e819b6a5ab903269779f0a360a8563b198111b3e
- 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: **265.2 MB (265173443 bytes)** - Total Size: **265.2 MB (265158843 bytes)**
(compressed transfer size, not on-disk size) (compressed transfer size, not on-disk size)
- Image ID: `sha256:58d2b5181496bd8f8712e5fe0298ba4f133777e4057092e436278a41656c554e` - Image ID: `sha256:d02207e4cde0e8a24c939ab14115cafbdc3bc00752c78ffb012344d1af0ba74a`
- Default Command: `["hy"]` - Default Command: `["hy"]`
```dockerfile ```dockerfile
@ -130,19 +130,19 @@ ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
ENV PYTHON_VERSION=3.5.2 ENV PYTHON_VERSION=3.5.2
# Tue, 28 Jun 2016 23:21:44 GMT # Tue, 28 Jun 2016 23:21:44 GMT
ENV PYTHON_PIP_VERSION=8.1.2 ENV PYTHON_PIP_VERSION=8.1.2
# Tue, 28 Jun 2016 23:23:52 GMT # Fri, 01 Jul 2016 20:35:51 GMT
RUN set -ex && 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 && pip3 install --no-cache-dir --upgrade --ignore-installed pip==$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 '{}' + && rm -rf /usr/src/python ~/.cache RUN set -ex && 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 && pip3 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 '{}' + && rm -rf /usr/src/python ~/.cache
# Tue, 28 Jun 2016 23:23:54 GMT # Fri, 01 Jul 2016 20:35:52 GMT
RUN cd /usr/local/bin && ln -s easy_install-3.5 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config RUN cd /usr/local/bin && ln -s easy_install-3.5 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config
# Tue, 28 Jun 2016 23:23:54 GMT # Fri, 01 Jul 2016 20:35:52 GMT
CMD ["python3"] CMD ["python3"]
# Wed, 29 Jun 2016 00:04:32 GMT # Fri, 01 Jul 2016 21:55:01 GMT
MAINTAINER Paul R. Tagliamonte <paultag@hylang.org> MAINTAINER Paul R. Tagliamonte <paultag@hylang.org>
# Wed, 29 Jun 2016 00:04:33 GMT # Fri, 01 Jul 2016 21:55:02 GMT
ADD dir:866a4ac77e162758d5a87e8e6eeada7a7cc3a0f86d1565f43e2fab5ad260d7f7 in /opt/hylang/hy ADD dir:866a4ac77e162758d5a87e8e6eeada7a7cc3a0f86d1565f43e2fab5ad260d7f7 in /opt/hylang/hy
# Wed, 29 Jun 2016 00:04:39 GMT # Fri, 01 Jul 2016 21:55:08 GMT
RUN pip3 install -e /opt/hylang/hy RUN pip3 install -e /opt/hylang/hy
# Wed, 29 Jun 2016 00:04:39 GMT # Fri, 01 Jul 2016 21:55:08 GMT
CMD ["hy"] CMD ["hy"]
``` ```
@ -162,23 +162,23 @@ CMD ["hy"]
- `sha256:7663bd2e167e1baec490bc208bdf854dae81b324bed9595edecc9136f06da7fe` - `sha256:7663bd2e167e1baec490bc208bdf854dae81b324bed9595edecc9136f06da7fe`
Last Modified: Wed, 15 Jun 2016 21:14:50 GMT Last Modified: Wed, 15 Jun 2016 21:14:50 GMT
Size: 242.5 KB (242498 bytes) Size: 242.5 KB (242498 bytes)
- `sha256:d6069427531211bfdec3d3317092c59790a679787339d2d29f82e59e3ec995a6` - `sha256:fc47c86cd2eabe1eb1362117e34c64c25d1581be338d17f422db012b173f34c9`
Last Modified: Tue, 28 Jun 2016 23:37:04 GMT Last Modified: Fri, 01 Jul 2016 20:49:19 GMT
Size: 20.1 MB (20121310 bytes) Size: 20.1 MB (20106543 bytes)
- `sha256:fb6b2d10f658b325f604f66f7587d1dc72c3e24cf5bb7cdcbfaea19c1a807817` - `sha256:1253703cd472c03a1a0d90cbe8c60232536fd5ef3e5cad005f30a3721428c95f`
Last Modified: Tue, 28 Jun 2016 23:36:57 GMT Last Modified: Fri, 01 Jul 2016 20:49:13 GMT
Size: 265.0 B Size: 266.0 B
- `sha256:5599650fb3f6e75e3218968a13d31771c4fa42383d6bfd578c519e925626b81c` - `sha256:ceae5771730e57ea7c122bb79f7ece3e2c26394ebc5b796c3770fa0fbc36683d`
Last Modified: Wed, 29 Jun 2016 00:04:48 GMT Last Modified: Fri, 01 Jul 2016 21:55:16 GMT
Size: 358.4 KB (358378 bytes) Size: 358.4 KB (358367 bytes)
- `sha256:0a274f8a83e85226f08569ed30af300dcabd724765e25ebb6a99addeadb063cd` - `sha256:f6adabcf858e7aa518b8b7608eea0dc92e5b30056e0cb4e0adf841e7801e2a9b`
Last Modified: Wed, 29 Jun 2016 00:04:48 GMT Last Modified: Fri, 01 Jul 2016 21:55:17 GMT
Size: 2.3 MB (2321484 bytes) Size: 2.3 MB (2321661 bytes)
## `hylang:0` ## `hylang:0`
```console ```console
$ docker pull hylang@sha256:665ca0fdf9f5e819b6a5ab903269779f0a360a8563b198111b3ef081a18d8ddb $ docker pull hylang@sha256:416ecbf0854ee1c6e77d669977e830e73b2e7ec731eabf27e9b3a181a1a5a30d
``` ```
- Platforms: - Platforms:
@ -188,9 +188,9 @@ $ docker pull hylang@sha256:665ca0fdf9f5e819b6a5ab903269779f0a360a8563b198111b3e
- 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: **265.2 MB (265173443 bytes)** - Total Size: **265.2 MB (265158843 bytes)**
(compressed transfer size, not on-disk size) (compressed transfer size, not on-disk size)
- Image ID: `sha256:58d2b5181496bd8f8712e5fe0298ba4f133777e4057092e436278a41656c554e` - Image ID: `sha256:d02207e4cde0e8a24c939ab14115cafbdc3bc00752c78ffb012344d1af0ba74a`
- Default Command: `["hy"]` - Default Command: `["hy"]`
```dockerfile ```dockerfile
@ -214,19 +214,19 @@ ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
ENV PYTHON_VERSION=3.5.2 ENV PYTHON_VERSION=3.5.2
# Tue, 28 Jun 2016 23:21:44 GMT # Tue, 28 Jun 2016 23:21:44 GMT
ENV PYTHON_PIP_VERSION=8.1.2 ENV PYTHON_PIP_VERSION=8.1.2
# Tue, 28 Jun 2016 23:23:52 GMT # Fri, 01 Jul 2016 20:35:51 GMT
RUN set -ex && 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 && pip3 install --no-cache-dir --upgrade --ignore-installed pip==$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 '{}' + && rm -rf /usr/src/python ~/.cache RUN set -ex && 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 && pip3 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 '{}' + && rm -rf /usr/src/python ~/.cache
# Tue, 28 Jun 2016 23:23:54 GMT # Fri, 01 Jul 2016 20:35:52 GMT
RUN cd /usr/local/bin && ln -s easy_install-3.5 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config RUN cd /usr/local/bin && ln -s easy_install-3.5 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config
# Tue, 28 Jun 2016 23:23:54 GMT # Fri, 01 Jul 2016 20:35:52 GMT
CMD ["python3"] CMD ["python3"]
# Wed, 29 Jun 2016 00:04:32 GMT # Fri, 01 Jul 2016 21:55:01 GMT
MAINTAINER Paul R. Tagliamonte <paultag@hylang.org> MAINTAINER Paul R. Tagliamonte <paultag@hylang.org>
# Wed, 29 Jun 2016 00:04:33 GMT # Fri, 01 Jul 2016 21:55:02 GMT
ADD dir:866a4ac77e162758d5a87e8e6eeada7a7cc3a0f86d1565f43e2fab5ad260d7f7 in /opt/hylang/hy ADD dir:866a4ac77e162758d5a87e8e6eeada7a7cc3a0f86d1565f43e2fab5ad260d7f7 in /opt/hylang/hy
# Wed, 29 Jun 2016 00:04:39 GMT # Fri, 01 Jul 2016 21:55:08 GMT
RUN pip3 install -e /opt/hylang/hy RUN pip3 install -e /opt/hylang/hy
# Wed, 29 Jun 2016 00:04:39 GMT # Fri, 01 Jul 2016 21:55:08 GMT
CMD ["hy"] CMD ["hy"]
``` ```
@ -246,23 +246,23 @@ CMD ["hy"]
- `sha256:7663bd2e167e1baec490bc208bdf854dae81b324bed9595edecc9136f06da7fe` - `sha256:7663bd2e167e1baec490bc208bdf854dae81b324bed9595edecc9136f06da7fe`
Last Modified: Wed, 15 Jun 2016 21:14:50 GMT Last Modified: Wed, 15 Jun 2016 21:14:50 GMT
Size: 242.5 KB (242498 bytes) Size: 242.5 KB (242498 bytes)
- `sha256:d6069427531211bfdec3d3317092c59790a679787339d2d29f82e59e3ec995a6` - `sha256:fc47c86cd2eabe1eb1362117e34c64c25d1581be338d17f422db012b173f34c9`
Last Modified: Tue, 28 Jun 2016 23:37:04 GMT Last Modified: Fri, 01 Jul 2016 20:49:19 GMT
Size: 20.1 MB (20121310 bytes) Size: 20.1 MB (20106543 bytes)
- `sha256:fb6b2d10f658b325f604f66f7587d1dc72c3e24cf5bb7cdcbfaea19c1a807817` - `sha256:1253703cd472c03a1a0d90cbe8c60232536fd5ef3e5cad005f30a3721428c95f`
Last Modified: Tue, 28 Jun 2016 23:36:57 GMT Last Modified: Fri, 01 Jul 2016 20:49:13 GMT
Size: 265.0 B Size: 266.0 B
- `sha256:5599650fb3f6e75e3218968a13d31771c4fa42383d6bfd578c519e925626b81c` - `sha256:ceae5771730e57ea7c122bb79f7ece3e2c26394ebc5b796c3770fa0fbc36683d`
Last Modified: Wed, 29 Jun 2016 00:04:48 GMT Last Modified: Fri, 01 Jul 2016 21:55:16 GMT
Size: 358.4 KB (358378 bytes) Size: 358.4 KB (358367 bytes)
- `sha256:0a274f8a83e85226f08569ed30af300dcabd724765e25ebb6a99addeadb063cd` - `sha256:f6adabcf858e7aa518b8b7608eea0dc92e5b30056e0cb4e0adf841e7801e2a9b`
Last Modified: Wed, 29 Jun 2016 00:04:48 GMT Last Modified: Fri, 01 Jul 2016 21:55:17 GMT
Size: 2.3 MB (2321484 bytes) Size: 2.3 MB (2321661 bytes)
## `hylang:latest` ## `hylang:latest`
```console ```console
$ docker pull hylang@sha256:665ca0fdf9f5e819b6a5ab903269779f0a360a8563b198111b3ef081a18d8ddb $ docker pull hylang@sha256:416ecbf0854ee1c6e77d669977e830e73b2e7ec731eabf27e9b3a181a1a5a30d
``` ```
- Platforms: - Platforms:
@ -272,9 +272,9 @@ $ docker pull hylang@sha256:665ca0fdf9f5e819b6a5ab903269779f0a360a8563b198111b3e
- 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: **265.2 MB (265173443 bytes)** - Total Size: **265.2 MB (265158843 bytes)**
(compressed transfer size, not on-disk size) (compressed transfer size, not on-disk size)
- Image ID: `sha256:58d2b5181496bd8f8712e5fe0298ba4f133777e4057092e436278a41656c554e` - Image ID: `sha256:d02207e4cde0e8a24c939ab14115cafbdc3bc00752c78ffb012344d1af0ba74a`
- Default Command: `["hy"]` - Default Command: `["hy"]`
```dockerfile ```dockerfile
@ -298,19 +298,19 @@ ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
ENV PYTHON_VERSION=3.5.2 ENV PYTHON_VERSION=3.5.2
# Tue, 28 Jun 2016 23:21:44 GMT # Tue, 28 Jun 2016 23:21:44 GMT
ENV PYTHON_PIP_VERSION=8.1.2 ENV PYTHON_PIP_VERSION=8.1.2
# Tue, 28 Jun 2016 23:23:52 GMT # Fri, 01 Jul 2016 20:35:51 GMT
RUN set -ex && 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 && pip3 install --no-cache-dir --upgrade --ignore-installed pip==$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 '{}' + && rm -rf /usr/src/python ~/.cache RUN set -ex && 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 && pip3 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 '{}' + && rm -rf /usr/src/python ~/.cache
# Tue, 28 Jun 2016 23:23:54 GMT # Fri, 01 Jul 2016 20:35:52 GMT
RUN cd /usr/local/bin && ln -s easy_install-3.5 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config RUN cd /usr/local/bin && ln -s easy_install-3.5 easy_install && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config
# Tue, 28 Jun 2016 23:23:54 GMT # Fri, 01 Jul 2016 20:35:52 GMT
CMD ["python3"] CMD ["python3"]
# Wed, 29 Jun 2016 00:04:32 GMT # Fri, 01 Jul 2016 21:55:01 GMT
MAINTAINER Paul R. Tagliamonte <paultag@hylang.org> MAINTAINER Paul R. Tagliamonte <paultag@hylang.org>
# Wed, 29 Jun 2016 00:04:33 GMT # Fri, 01 Jul 2016 21:55:02 GMT
ADD dir:866a4ac77e162758d5a87e8e6eeada7a7cc3a0f86d1565f43e2fab5ad260d7f7 in /opt/hylang/hy ADD dir:866a4ac77e162758d5a87e8e6eeada7a7cc3a0f86d1565f43e2fab5ad260d7f7 in /opt/hylang/hy
# Wed, 29 Jun 2016 00:04:39 GMT # Fri, 01 Jul 2016 21:55:08 GMT
RUN pip3 install -e /opt/hylang/hy RUN pip3 install -e /opt/hylang/hy
# Wed, 29 Jun 2016 00:04:39 GMT # Fri, 01 Jul 2016 21:55:08 GMT
CMD ["hy"] CMD ["hy"]
``` ```
@ -330,15 +330,15 @@ CMD ["hy"]
- `sha256:7663bd2e167e1baec490bc208bdf854dae81b324bed9595edecc9136f06da7fe` - `sha256:7663bd2e167e1baec490bc208bdf854dae81b324bed9595edecc9136f06da7fe`
Last Modified: Wed, 15 Jun 2016 21:14:50 GMT Last Modified: Wed, 15 Jun 2016 21:14:50 GMT
Size: 242.5 KB (242498 bytes) Size: 242.5 KB (242498 bytes)
- `sha256:d6069427531211bfdec3d3317092c59790a679787339d2d29f82e59e3ec995a6` - `sha256:fc47c86cd2eabe1eb1362117e34c64c25d1581be338d17f422db012b173f34c9`
Last Modified: Tue, 28 Jun 2016 23:37:04 GMT Last Modified: Fri, 01 Jul 2016 20:49:19 GMT
Size: 20.1 MB (20121310 bytes) Size: 20.1 MB (20106543 bytes)
- `sha256:fb6b2d10f658b325f604f66f7587d1dc72c3e24cf5bb7cdcbfaea19c1a807817` - `sha256:1253703cd472c03a1a0d90cbe8c60232536fd5ef3e5cad005f30a3721428c95f`
Last Modified: Tue, 28 Jun 2016 23:36:57 GMT Last Modified: Fri, 01 Jul 2016 20:49:13 GMT
Size: 265.0 B Size: 266.0 B
- `sha256:5599650fb3f6e75e3218968a13d31771c4fa42383d6bfd578c519e925626b81c` - `sha256:ceae5771730e57ea7c122bb79f7ece3e2c26394ebc5b796c3770fa0fbc36683d`
Last Modified: Wed, 29 Jun 2016 00:04:48 GMT Last Modified: Fri, 01 Jul 2016 21:55:16 GMT
Size: 358.4 KB (358378 bytes) Size: 358.4 KB (358367 bytes)
- `sha256:0a274f8a83e85226f08569ed30af300dcabd724765e25ebb6a99addeadb063cd` - `sha256:f6adabcf858e7aa518b8b7608eea0dc92e5b30056e0cb4e0adf841e7801e2a9b`
Last Modified: Wed, 29 Jun 2016 00:04:48 GMT Last Modified: Fri, 01 Jul 2016 21:55:17 GMT
Size: 2.3 MB (2321484 bytes) Size: 2.3 MB (2321661 bytes)

File diff suppressed because it is too large Load Diff