Skip to content

Console Output

01:33:07 + docker build -t dockerbuildbot/docker-py:py2-cd70d165a9aa21b083ccc52b45a220a457384e1d -f tests/Dockerfile --build-arg PYTHON_VERSION=2.7 .
01:33:07 Sending build context to Docker daemon  1.275MB

01:33:07 Step 1/19 : ARG PYTHON_VERSION=3.7
01:33:07 Step 2/19 : FROM python:${PYTHON_VERSION}
01:33:07  ---> 55b47eef9c39
01:33:07 Step 3/19 : ARG APT_MIRROR
01:33:07  ---> Using cache
01:33:07  ---> 5737dcb92c48
01:33:07 Step 4/19 : RUN sed -ri "s/(httpredir|deb).debian.org/${APT_MIRROR:-deb.debian.org}/g" /etc/apt/sources.list  && sed -ri "s/(security).debian.org/${APT_MIRROR:-security.debian.org}/g" /etc/apt/sources.list
01:33:07  ---> Using cache
01:33:07  ---> 65351c91f0d0
01:33:07 Step 5/19 : RUN apt-get update && apt-get -y install     gnupg2     pass     curl
01:33:07  ---> Using cache
01:33:07  ---> 057cab4ea2ca
01:33:07 Step 6/19 : COPY ./tests/gpg-keys /gpg-keys
01:33:07  ---> Using cache
01:33:07  ---> f21e58d1c7b4
01:33:07 Step 7/19 : RUN gpg2 --import gpg-keys/secret
01:33:07  ---> Using cache
01:33:07  ---> 41351c77c5dc
01:33:07 Step 8/19 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
01:33:07  ---> Using cache
01:33:07  ---> 10ee3d183cd3
01:33:07 Step 9/19 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
01:33:07  ---> Using cache
01:33:07  ---> d1563dc417be
01:33:07 Step 10/19 : RUN gpg2 --check-trustdb
01:33:07  ---> Using cache
01:33:07  ---> 078cce44dc6b
01:33:07 Step 11/19 : ARG CREDSTORE_VERSION=v0.6.3
01:33:07  ---> Using cache
01:33:07  ---> 7bc7d1920427
01:33:07 Step 12/19 : RUN curl -sSL -o /opt/docker-credential-pass.tar.gz     https://github.com/docker/docker-credential-helpers/releases/download/$CREDSTORE_VERSION/docker-credential-pass-$CREDSTORE_VERSION-amd64.tar.gz &&     tar -xf /opt/docker-credential-pass.tar.gz -O > /usr/local/bin/docker-credential-pass &&     rm -rf /opt/docker-credential-pass.tar.gz &&     chmod +x /usr/local/bin/docker-credential-pass
01:33:07  ---> Using cache
01:33:07  ---> e4f9a1b89a94
01:33:07 Step 13/19 : WORKDIR /src
01:33:07  ---> Using cache
01:33:07  ---> b4e0f27ecbb9
01:33:07 Step 14/19 : COPY requirements.txt /src/requirements.txt
01:33:07  ---> Using cache
01:33:07  ---> 133878931eca
01:33:07 Step 15/19 : RUN pip install -r requirements.txt
01:33:07  ---> Using cache
01:33:07  ---> 84ca530ced47
01:33:07 Step 16/19 : COPY test-requirements.txt /src/test-requirements.txt
01:33:07  ---> Using cache
01:33:07  ---> 616bdbfaa22e
01:33:07 Step 17/19 : RUN pip install -r test-requirements.txt
01:33:07  ---> Using cache
01:33:07  ---> 7bc820349f57
01:33:07 Step 18/19 : COPY . /src
01:33:07  ---> 08aa2eac019f
01:33:07 Step 19/19 : RUN pip install .
01:33:07  ---> Running in 267fd643a46d
01:33:08 DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support
01:33:08 Processing /src
01:33:08 Requirement already satisfied: six>=1.4.0 in /usr/local/lib/python2.7/site-packages (from docker==4.1.0.dev0) (1.10.0)
01:33:08 Requirement already satisfied: websocket-client>=0.32.0 in /usr/local/lib/python2.7/site-packages (from docker==4.1.0.dev0) (0.56.0)
01:33:08 Requirement already satisfied: requests!=2.18.0,>=2.14.2 in /usr/local/lib/python2.7/site-packages (from docker==4.1.0.dev0) (2.20.0)
01:33:08 Requirement already satisfied: backports.ssl_match_hostname>=3.5 in /usr/local/lib/python2.7/site-packages (from docker==4.1.0.dev0) (3.5.0.1)
01:33:08 Requirement already satisfied: ipaddress>=1.0.16 in /usr/local/lib/python2.7/site-packages (from docker==4.1.0.dev0) (1.0.18)
01:33:08 Requirement already satisfied: idna<2.8,>=2.5 in /usr/local/lib/python2.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==4.1.0.dev0) (2.5)
01:33:08 Requirement already satisfied: urllib3<1.25,>=1.21.1 in /usr/local/lib/python2.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==4.1.0.dev0) (1.24.3)
01:33:08 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python2.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==4.1.0.dev0) (2019.6.16)
01:33:08 Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /usr/local/lib/python2.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==4.1.0.dev0) (3.0.4)
01:33:09 Building wheels for collected packages: docker
01:33:09   Building wheel for docker (setup.py): started
01:33:09   Building wheel for docker (setup.py): finished with status 'done'
01:33:09   Created wheel for docker: filename=docker-4.1.0.dev0-py2.py3-none-any.whl size=139204 sha256=d454ebb800339947f65c468ccd6ea0f43e86063bbc2714b80416c7910b62897f
01:33:09   Stored in directory: /tmp/pip-ephem-wheel-cache-qGUH3L/wheels/ee/4d/f0/2a86c10b571f6f2e614d6de70cb18e96cf856ba00408408b23
01:33:09 Successfully built docker
01:33:09 Installing collected packages: docker
01:33:09 Successfully installed docker-4.1.0.dev0
01:33:09 Removing intermediate container 267fd643a46d
01:33:09  ---> 7ed1a288fab1
01:33:09 Successfully built 7ed1a288fab1
01:33:09 Successfully tagged dockerbuildbot/docker-py:py2-cd70d165a9aa21b083ccc52b45a220a457384e1d