Skip to content

Console Output

22:46:23 + docker build -t dockerbuildbot/docker-py:py2-9fa6210392a4d5a3b5fa02353c9471a8b2e160b6 -f tests/Dockerfile --build-arg PYTHON_VERSION=2.7 .
22:46:23 Sending build context to Docker daemon  1.273MB

22:46:23 Step 1/19 : ARG PYTHON_VERSION=3.7
22:46:23 Step 2/19 : FROM python:${PYTHON_VERSION}
22:46:23  ---> 55b47eef9c39
22:46:23 Step 3/19 : ARG APT_MIRROR
22:46:23  ---> Using cache
22:46:23  ---> ff72a9b1733a
22:46:23 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
22:46:23  ---> Using cache
22:46:23  ---> 248e78aaa409
22:46:23 Step 5/19 : RUN apt-get update && apt-get -y install     gnupg2     pass     curl
22:46:23  ---> Using cache
22:46:23  ---> 95e51a2f7b86
22:46:23 Step 6/19 : COPY ./tests/gpg-keys /gpg-keys
22:46:23  ---> Using cache
22:46:23  ---> 2281751bc300
22:46:23 Step 7/19 : RUN gpg2 --import gpg-keys/secret
22:46:23  ---> Using cache
22:46:23  ---> f5765eb09f9e
22:46:23 Step 8/19 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
22:46:23  ---> Using cache
22:46:23  ---> b4626b326918
22:46:23 Step 9/19 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
22:46:23  ---> Using cache
22:46:23  ---> 07358f5c6914
22:46:23 Step 10/19 : RUN gpg2 --check-trustdb
22:46:23  ---> Using cache
22:46:23  ---> cd5637eed951
22:46:23 Step 11/19 : ARG CREDSTORE_VERSION=v0.6.3
22:46:23  ---> Using cache
22:46:23  ---> 918a654805f5
22:46:23 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
22:46:23  ---> Using cache
22:46:23  ---> 18628af6a7e2
22:46:23 Step 13/19 : WORKDIR /src
22:46:23  ---> Using cache
22:46:23  ---> 46c6daa78b49
22:46:23 Step 14/19 : COPY requirements.txt /src/requirements.txt
22:46:23  ---> Using cache
22:46:23  ---> d9c3eccd9b85
22:46:23 Step 15/19 : RUN pip install -r requirements.txt
22:46:23  ---> Using cache
22:46:23  ---> 211088e77bc0
22:46:23 Step 16/19 : COPY test-requirements.txt /src/test-requirements.txt
22:46:23  ---> Using cache
22:46:23  ---> 87035d6ae8fb
22:46:23 Step 17/19 : RUN pip install -r test-requirements.txt
22:46:23  ---> Using cache
22:46:23  ---> 774c32d27d74
22:46:23 Step 18/19 : COPY . /src
22:46:23  ---> da63a9eb8e5d
22:46:23 Step 19/19 : RUN pip install .
22:46:23  ---> Running in 054a2024b0c6
22:46:25 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
22:46:25 Processing /src
22:46:25 Requirement already satisfied: six>=1.4.0 in /usr/local/lib/python2.7/site-packages (from docker==4.1.0.dev0) (1.10.0)
22:46:25 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)
22:46:25 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)
22:46:25 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)
22:46:25 Requirement already satisfied: ipaddress>=1.0.16 in /usr/local/lib/python2.7/site-packages (from docker==4.1.0.dev0) (1.0.18)
22:46:25 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)
22:46:25 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)
22:46:25 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)
22:46:25 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)
22:46:25 Building wheels for collected packages: docker
22:46:25   Building wheel for docker (setup.py): started
22:46:25   Building wheel for docker (setup.py): finished with status 'done'
22:46:25   Created wheel for docker: filename=docker-4.1.0.dev0-py2.py3-none-any.whl size=139117 sha256=ff4e5cd2cfac2102f3305569359e606ade6e4fdb023e71b33187c1faacfec1d4
22:46:25   Stored in directory: /tmp/pip-ephem-wheel-cache-8jXu3N/wheels/ee/4d/f0/2a86c10b571f6f2e614d6de70cb18e96cf856ba00408408b23
22:46:25 Successfully built docker
22:46:25 Installing collected packages: docker
22:46:25 Successfully installed docker-4.1.0.dev0
22:46:26 Removing intermediate container 054a2024b0c6
22:46:26  ---> 4ad8931f257b
22:46:26 Successfully built 4ad8931f257b
22:46:26 Successfully tagged dockerbuildbot/docker-py:py2-9fa6210392a4d5a3b5fa02353c9471a8b2e160b6