Skip to content

Console Output

23:01:43 + docker build -t dockerbuildbot/docker-py:py2-7bef5e867676999bf1c1a7be8d5084bf16dd2764 -f tests/Dockerfile --build-arg PYTHON_VERSION=2.7 .
23:01:43 Sending build context to Docker daemon    1.3MB

23:01:43 Step 1/19 : ARG PYTHON_VERSION=3.7
23:01:43 Step 2/19 : FROM python:${PYTHON_VERSION}
23:01:43  ---> 09a181e16b7e
23:01:43 Step 3/19 : ARG APT_MIRROR
23:01:43  ---> Using cache
23:01:43  ---> c44d7afc26f3
23:01:43 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
23:01:43  ---> Using cache
23:01:43  ---> 6e29b48d2b39
23:01:43 Step 5/19 : RUN apt-get update && apt-get -y install     gnupg2     pass     curl
23:01:43  ---> Using cache
23:01:43  ---> 63f8a724f19b
23:01:43 Step 6/19 : COPY ./tests/gpg-keys /gpg-keys
23:01:43  ---> Using cache
23:01:43  ---> f8b5e201c970
23:01:43 Step 7/19 : RUN gpg2 --import gpg-keys/secret
23:01:43  ---> Using cache
23:01:43  ---> 3c6f28c8fc45
23:01:43 Step 8/19 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
23:01:43  ---> Using cache
23:01:43  ---> 8e00866df2de
23:01:43 Step 9/19 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
23:01:43  ---> Using cache
23:01:43  ---> 31bccc2488fc
23:01:43 Step 10/19 : RUN gpg2 --check-trustdb
23:01:43  ---> Using cache
23:01:43  ---> 2a8746c9dc12
23:01:43 Step 11/19 : ARG CREDSTORE_VERSION=v0.6.3
23:01:43  ---> Using cache
23:01:43  ---> 07ee879a410b
23:01:43 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
23:01:43  ---> Using cache
23:01:43  ---> 1c9c9de3f07b
23:01:43 Step 13/19 : WORKDIR /src
23:01:43  ---> Using cache
23:01:43  ---> ee55e9c0e9f7
23:01:43 Step 14/19 : COPY requirements.txt /src/requirements.txt
23:01:43  ---> Using cache
23:01:43  ---> d36f696d1325
23:01:43 Step 15/19 : RUN pip install -r requirements.txt
23:01:43  ---> Using cache
23:01:43  ---> 48a5e2c271cd
23:01:43 Step 16/19 : COPY test-requirements.txt /src/test-requirements.txt
23:01:43  ---> Using cache
23:01:43  ---> 95477d1901ac
23:01:43 Step 17/19 : RUN pip install -r test-requirements.txt
23:01:43  ---> Using cache
23:01:43  ---> 6d7280c219fe
23:01:43 Step 18/19 : COPY . /src
23:01:44  ---> d5bec40903c3
23:01:44 Step 19/19 : RUN pip install .
23:01:44  ---> Running in e5c1d37a4d14
23:01:45 DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. 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
23:01:45 Processing /src
23:01:45 Requirement already satisfied: six>=1.4.0 in /usr/local/lib/python2.7/site-packages (from docker==4.3.0.dev0) (1.10.0)
23:01:45 Requirement already satisfied: websocket-client>=0.32.0 in /usr/local/lib/python2.7/site-packages (from docker==4.3.0.dev0) (0.56.0)
23:01:45 Requirement already satisfied: requests!=2.18.0,>=2.14.2 in /usr/local/lib/python2.7/site-packages (from docker==4.3.0.dev0) (2.20.0)
23:01:45 Requirement already satisfied: backports.ssl_match_hostname>=3.5 in /usr/local/lib/python2.7/site-packages (from docker==4.3.0.dev0) (3.5.0.1)
23:01:45 Requirement already satisfied: ipaddress>=1.0.16 in /usr/local/lib/python2.7/site-packages (from docker==4.3.0.dev0) (1.0.18)
23:01:45 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.3.0.dev0) (2019.11.28)
23:01:45 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.3.0.dev0) (2.5)
23:01:45 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.3.0.dev0) (3.0.4)
23:01:45 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.3.0.dev0) (1.24.3)
23:01:45 Building wheels for collected packages: docker
23:01:45   Building wheel for docker (setup.py): started
23:01:45   Building wheel for docker (setup.py): finished with status 'done'
23:01:45   Created wheel for docker: filename=docker-4.3.0.dev0-py2.py3-none-any.whl size=143999 sha256=b434bb8a91ef00bf5650c743e002bc7ea8e490feb7158b33fd8ffc9ed1580137
23:01:45   Stored in directory: /tmp/pip-ephem-wheel-cache-PQmgdH/wheels/dc/45/28/050a7fcd95fc9b9f504d64d6668214323c48b439857458e65c
23:01:45 Successfully built docker
23:01:45 Installing collected packages: docker
23:01:45 Successfully installed docker-4.3.0.dev0
23:01:46 Removing intermediate container e5c1d37a4d14
23:01:46  ---> 4723393189a3
23:01:46 Successfully built 4723393189a3
23:01:46 Successfully tagged dockerbuildbot/docker-py:py2-7bef5e867676999bf1c1a7be8d5084bf16dd2764