Skip to content

Console Output

18:28:42 + docker build -t dockerbuildbot/docker-py:py2-7750c91f1652e4fb536243e0819fd8b1e4c371be -f tests/Dockerfile --build-arg PYTHON_VERSION=2.7 .
18:28:42 Sending build context to Docker daemon  1.275MB

18:28:42 Step 1/19 : ARG PYTHON_VERSION=3.7
18:28:42 Step 2/19 : FROM python:${PYTHON_VERSION}
18:28:42  ---> e8cff83571c6
18:28:42 Step 3/19 : ARG APT_MIRROR
18:28:42  ---> Using cache
18:28:42  ---> 817bb791cc57
18:28:42 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
18:28:42  ---> Using cache
18:28:42  ---> b6ac19297826
18:28:42 Step 5/19 : RUN apt-get update && apt-get -y install     gnupg2     pass     curl
18:28:42  ---> Using cache
18:28:42  ---> f17f61600dcb
18:28:42 Step 6/19 : COPY ./tests/gpg-keys /gpg-keys
18:28:42  ---> Using cache
18:28:42  ---> 3e0df19e8cce
18:28:42 Step 7/19 : RUN gpg2 --import gpg-keys/secret
18:28:42  ---> Using cache
18:28:42  ---> 1617ad966432
18:28:42 Step 8/19 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
18:28:42  ---> Using cache
18:28:42  ---> e2158056b101
18:28:42 Step 9/19 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
18:28:42  ---> Using cache
18:28:42  ---> cf880a0dcdb9
18:28:42 Step 10/19 : RUN gpg2 --check-trustdb
18:28:42  ---> Using cache
18:28:42  ---> 931e931cc11d
18:28:42 Step 11/19 : ARG CREDSTORE_VERSION=v0.6.3
18:28:42  ---> Using cache
18:28:42  ---> b61ba6b07dc5
18:28:42 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
18:28:42  ---> Using cache
18:28:42  ---> 7586b7f92162
18:28:42 Step 13/19 : WORKDIR /src
18:28:42  ---> Using cache
18:28:42  ---> f3eade6664f4
18:28:42 Step 14/19 : COPY requirements.txt /src/requirements.txt
18:28:42  ---> Using cache
18:28:42  ---> 59f7792a697f
18:28:42 Step 15/19 : RUN pip install -r requirements.txt
18:28:42  ---> Using cache
18:28:42  ---> 4504b2c81f9f
18:28:42 Step 16/19 : COPY test-requirements.txt /src/test-requirements.txt
18:28:42  ---> Using cache
18:28:42  ---> 5c1c257997e2
18:28:42 Step 17/19 : RUN pip install -r test-requirements.txt
18:28:42  ---> Using cache
18:28:42  ---> 99adbfce2350
18:28:42 Step 18/19 : COPY . /src
18:28:43  ---> 8a6e21b8299e
18:28:43 Step 19/19 : RUN pip install .
18:28:43  ---> Running in a6afc595bee2
18:28:44 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
18:28:44 Processing /src
18:28:44 Requirement already satisfied: six>=1.4.0 in /usr/local/lib/python2.7/site-packages (from docker==4.1.0.dev0) (1.10.0)
18:28:44 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)
18:28:44 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)
18:28:44 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)
18:28:44 Requirement already satisfied: ipaddress>=1.0.16 in /usr/local/lib/python2.7/site-packages (from docker==4.1.0.dev0) (1.0.18)
18:28:44 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)
18:28:44 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)
18:28:44 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.11.28)
18:28:44 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)
18:28:44 Building wheels for collected packages: docker
18:28:44   Building wheel for docker (setup.py): started
18:28:44   Building wheel for docker (setup.py): finished with status 'done'
18:28:44   Created wheel for docker: filename=docker-4.1.0.dev0-py2.py3-none-any.whl size=139548 sha256=9265c9e3c71fe9f5fcf2eed4b7ac868445780e47d376dbe5fc40aa5697fb5014
18:28:44   Stored in directory: /tmp/pip-ephem-wheel-cache-oKjwqX/wheels/ee/4d/f0/2a86c10b571f6f2e614d6de70cb18e96cf856ba00408408b23
18:28:44 Successfully built docker
18:28:44 Installing collected packages: docker
18:28:44 Successfully installed docker-4.1.0.dev0
18:28:45 Removing intermediate container a6afc595bee2
18:28:45  ---> 4c8d3784b6d4
18:28:45 Successfully built 4c8d3784b6d4
18:28:45 Successfully tagged dockerbuildbot/docker-py:py2-7750c91f1652e4fb536243e0819fd8b1e4c371be