Skip to content

Console Output

14:17:32 + docker build -t dockerbuildbot/docker-py:py2-4a42c9468c3243232a6d35f44b1f2401b4b33bf9 -f tests/Dockerfile --build-arg PYTHON_VERSION=2.7 .
14:17:32 Sending build context to Docker daemon  1.303MB

14:17:32 Step 1/19 : ARG PYTHON_VERSION=3.7
14:17:32 Step 2/19 : FROM python:${PYTHON_VERSION}
14:17:32  ---> 68e7be49c28c
14:17:32 Step 3/19 : ARG APT_MIRROR
14:17:32  ---> Using cache
14:17:32  ---> 5990c074c7bc
14:17:32 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
14:17:32  ---> Using cache
14:17:32  ---> 79140099ddf8
14:17:32 Step 5/19 : RUN apt-get update && apt-get -y install     gnupg2     pass     curl
14:17:32  ---> Using cache
14:17:32  ---> afba8d6ba49c
14:17:32 Step 6/19 : COPY ./tests/gpg-keys /gpg-keys
14:17:32  ---> Using cache
14:17:32  ---> 9fc1e5c96960
14:17:32 Step 7/19 : RUN gpg2 --import gpg-keys/secret
14:17:32  ---> Using cache
14:17:32  ---> fb64b330c910
14:17:32 Step 8/19 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
14:17:32  ---> Using cache
14:17:32  ---> 8d1b9aa9e946
14:17:32 Step 9/19 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
14:17:32  ---> Using cache
14:17:32  ---> 5154bf38ab08
14:17:32 Step 10/19 : RUN gpg2 --check-trustdb
14:17:32  ---> Using cache
14:17:32  ---> 7457cbe8ebc3
14:17:32 Step 11/19 : ARG CREDSTORE_VERSION=v0.6.3
14:17:32  ---> Using cache
14:17:32  ---> fd02a06f3a72
14:17:32 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
14:17:32  ---> Using cache
14:17:32  ---> b1ae979c253b
14:17:32 Step 13/19 : WORKDIR /src
14:17:32  ---> Using cache
14:17:32  ---> 346345316612
14:17:32 Step 14/19 : COPY requirements.txt /src/requirements.txt
14:17:32  ---> Using cache
14:17:32  ---> 6ea1c5aa1fa4
14:17:32 Step 15/19 : RUN pip install -r requirements.txt
14:17:32  ---> Using cache
14:17:32  ---> 327a9d5dd686
14:17:32 Step 16/19 : COPY test-requirements.txt /src/test-requirements.txt
14:17:32  ---> Using cache
14:17:32  ---> f99063a59e02
14:17:32 Step 17/19 : RUN pip install -r test-requirements.txt
14:17:32  ---> Using cache
14:17:32  ---> 7ddbf0d88c57
14:17:32 Step 18/19 : COPY . /src
14:17:32  ---> 5521761db2cd
14:17:32 Step 19/19 : RUN pip install .
14:17:32  ---> Running in 314132ac493e
14:17:33 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
14:17:33 Processing /src
14:17:33 Requirement already satisfied: six>=1.4.0 in /usr/local/lib/python2.7/site-packages (from docker==4.3.0.dev0) (1.10.0)
14:17:33 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)
14:17:33 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)
14:17:33 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)
14:17:33 Requirement already satisfied: ipaddress>=1.0.16 in /usr/local/lib/python2.7/site-packages (from docker==4.3.0.dev0) (1.0.18)
14:17:33 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) (2020.4.5.1)
14:17:33 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)
14:17:33 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)
14:17:33 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)
14:17:33 Building wheels for collected packages: docker
14:17:33   Building wheel for docker (setup.py): started
14:17:33   Building wheel for docker (setup.py): finished with status 'done'
14:17:33   Created wheel for docker: filename=docker-4.3.0.dev0-py2.py3-none-any.whl size=144050 sha256=e8ac0bbf044826e97ac016b7d2aedafd9726a791daea6baad29296cbb86ff8fb
14:17:33   Stored in directory: /tmp/pip-ephem-wheel-cache-bMXXtz/wheels/dc/45/28/050a7fcd95fc9b9f504d64d6668214323c48b439857458e65c
14:17:33 Successfully built docker
14:17:34 Installing collected packages: docker
14:17:34 Successfully installed docker-4.3.0.dev0
14:17:34 WARNING: You are using pip version 20.0.2; however, version 20.1.1 is available.
14:17:34 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
14:17:34 Removing intermediate container 314132ac493e
14:17:34  ---> 3e2ad74ccdf2
14:17:34 Successfully built 3e2ad74ccdf2
14:17:34 Successfully tagged dockerbuildbot/docker-py:py2-4a42c9468c3243232a6d35f44b1f2401b4b33bf9