Skip to content

Console Output

08:35:28 + docker build -t dockerbuildbot/docker-py:py2-a54e94fa1239c1c15a96c2b555b61a70d94cbc1f -f tests/Dockerfile --build-arg PYTHON_VERSION=2.7 .
08:35:28 Sending build context to Docker daemon  1.359MB

08:35:28 Step 1/21 : ARG PYTHON_VERSION=3.7
08:35:28 Step 2/21 : FROM python:${PYTHON_VERSION}
08:35:28  ---> 68e7be49c28c
08:35:28 Step 3/21 : ARG APT_MIRROR
08:35:28  ---> Using cache
08:35:28  ---> e894fcb1a466
08:35:28 Step 4/21 : 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
08:35:28  ---> Using cache
08:35:28  ---> c041b38d913a
08:35:28 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
08:35:28  ---> Using cache
08:35:28  ---> bfce2d97701d
08:35:28 Step 6/21 : COPY tests/ssh-keys /root/.ssh
08:35:28  ---> Using cache
08:35:28  ---> 3f03d7fbadae
08:35:28 Step 7/21 : RUN chmod -R 600 /root/.ssh
08:35:28  ---> Using cache
08:35:28  ---> a7c2f3e0b956
08:35:28 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
08:35:28  ---> Using cache
08:35:28  ---> d1501160199e
08:35:28 Step 9/21 : RUN gpg2 --import gpg-keys/secret
08:35:28  ---> Using cache
08:35:28  ---> 7b99c19a7993
08:35:28 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
08:35:28  ---> Using cache
08:35:28  ---> 35065448321f
08:35:28 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
08:35:28  ---> Using cache
08:35:28  ---> 049ebb3fa5bd
08:35:28 Step 12/21 : RUN gpg2 --check-trustdb
08:35:28  ---> Using cache
08:35:28  ---> 5d8368d4554b
08:35:28 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
08:35:28  ---> Using cache
08:35:28  ---> dca516f57f4c
08:35:28 Step 14/21 : 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
08:35:28  ---> Using cache
08:35:28  ---> d3adf5e92cc7
08:35:28 Step 15/21 : WORKDIR /src
08:35:28  ---> Using cache
08:35:28  ---> 59634599ab8f
08:35:28 Step 16/21 : COPY requirements.txt /src/requirements.txt
08:35:28  ---> Using cache
08:35:28  ---> 51ed5c631091
08:35:28 Step 17/21 : RUN pip install -r requirements.txt
08:35:28  ---> Using cache
08:35:28  ---> 547966b18b94
08:35:28 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
08:35:28  ---> Using cache
08:35:28  ---> e24acf86c5e0
08:35:28 Step 19/21 : RUN pip install -r test-requirements.txt
08:35:28  ---> Using cache
08:35:28  ---> 8b41c354c847
08:35:28 Step 20/21 : COPY . /src
08:35:28  ---> e9e1f019ae1b
08:35:28 Step 21/21 : RUN pip install .
08:35:28  ---> Running in 05e205646ada
08:35:29 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
08:35:29 Processing /src
08:35:29 Requirement already satisfied: six>=1.4.0 in /usr/local/lib/python2.7/site-packages (from docker==4.4.0.dev0) (1.10.0)
08:35:29 Requirement already satisfied: websocket-client>=0.32.0 in /usr/local/lib/python2.7/site-packages (from docker==4.4.0.dev0) (0.56.0)
08:35:29 Requirement already satisfied: requests!=2.18.0,>=2.14.2 in /usr/local/lib/python2.7/site-packages (from docker==4.4.0.dev0) (2.20.0)
08:35:29 Requirement already satisfied: backports.ssl_match_hostname>=3.5 in /usr/local/lib/python2.7/site-packages (from docker==4.4.0.dev0) (3.5.0.1)
08:35:29 Requirement already satisfied: ipaddress>=1.0.16 in /usr/local/lib/python2.7/site-packages (from docker==4.4.0.dev0) (1.0.18)
08:35:29 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.4.0.dev0) (2020.6.20)
08:35:29 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.4.0.dev0) (2.5)
08:35:29 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.4.0.dev0) (3.0.4)
08:35:29 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.4.0.dev0) (1.24.3)
08:35:29 Building wheels for collected packages: docker
08:35:29   Building wheel for docker (setup.py): started
08:35:29   Building wheel for docker (setup.py): finished with status 'done'
08:35:29   Created wheel for docker: filename=docker-4.4.0.dev0-py2.py3-none-any.whl size=146047 sha256=4d3f09fecc67508431bab2e8ca2c2ae151290cef0c526d2fbfa585aa98e41fcb
08:35:29   Stored in directory: /tmp/pip-ephem-wheel-cache-0OSN8P/wheels/dc/45/28/050a7fcd95fc9b9f504d64d6668214323c48b439857458e65c
08:35:29 Successfully built docker
08:35:29 Installing collected packages: docker
08:35:29 Successfully installed docker-4.4.0.dev0
08:35:29 WARNING: You are using pip version 20.0.2; however, version 20.2.3 is available.
08:35:29 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
08:35:30 Removing intermediate container 05e205646ada
08:35:30  ---> 510d8c3981fc
08:35:30 Successfully built 510d8c3981fc
08:35:30 Successfully tagged dockerbuildbot/docker-py:py2-a54e94fa1239c1c15a96c2b555b61a70d94cbc1f