Skip to content

Console Output

22:45:38 + docker build -t dockerbuildbot/docker-py:py3-dae1b83a352c5fa42e69c57cdc0243842ebfd0f0 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
22:45:38 Sending build context to Docker daemon  1.273MB

22:45:38 Step 1/19 : ARG PYTHON_VERSION=3.7
22:45:38 Step 2/19 : FROM python:${PYTHON_VERSION}
22:45:38  ---> 60e318e4984a
22:45:38 Step 3/19 : ARG APT_MIRROR
22:45:38  ---> Using cache
22:45:38  ---> a3113bc4b83f
22:45:38 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:45:38  ---> Using cache
22:45:38  ---> abd795c35a8d
22:45:38 Step 5/19 : RUN apt-get update && apt-get -y install     gnupg2     pass     curl
22:45:38  ---> Using cache
22:45:38  ---> b7197f684733
22:45:38 Step 6/19 : COPY ./tests/gpg-keys /gpg-keys
22:45:38  ---> Using cache
22:45:38  ---> 800aec29cabe
22:45:38 Step 7/19 : RUN gpg2 --import gpg-keys/secret
22:45:38  ---> Using cache
22:45:38  ---> 4a8c3a616148
22:45:38 Step 8/19 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
22:45:38  ---> Using cache
22:45:38  ---> 89d63207d0bd
22:45:38 Step 9/19 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
22:45:38  ---> Using cache
22:45:38  ---> 2f1d9a963f0e
22:45:38 Step 10/19 : RUN gpg2 --check-trustdb
22:45:38  ---> Using cache
22:45:38  ---> eed70f170a19
22:45:38 Step 11/19 : ARG CREDSTORE_VERSION=v0.6.3
22:45:38  ---> Using cache
22:45:38  ---> f8896ac59fe8
22:45:38 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:45:38  ---> Using cache
22:45:38  ---> 72b9757734e5
22:45:38 Step 13/19 : WORKDIR /src
22:45:38  ---> Using cache
22:45:38  ---> c9cb310d7686
22:45:38 Step 14/19 : COPY requirements.txt /src/requirements.txt
22:45:38  ---> Using cache
22:45:38  ---> 5d006e2f46e5
22:45:38 Step 15/19 : RUN pip install -r requirements.txt
22:45:38  ---> Using cache
22:45:38  ---> d7a9b963ea44
22:45:38 Step 16/19 : COPY test-requirements.txt /src/test-requirements.txt
22:45:38  ---> Using cache
22:45:38  ---> 0adf0748a56f
22:45:38 Step 17/19 : RUN pip install -r test-requirements.txt
22:45:38  ---> Using cache
22:45:38  ---> faf79ec45c3c
22:45:38 Step 18/19 : COPY . /src
22:45:38  ---> 9c2bc9b4bfbc
22:45:38 Step 19/19 : RUN pip install .
22:45:38  ---> Running in 8fd6c22cd7ad
22:45:40 Processing /src
22:45:40 Requirement already satisfied: six>=1.4.0 in /usr/local/lib/python3.7/site-packages (from docker==4.1.0.dev0) (1.10.0)
22:45:40 Requirement already satisfied: websocket-client>=0.32.0 in /usr/local/lib/python3.7/site-packages (from docker==4.1.0.dev0) (0.56.0)
22:45:40 Requirement already satisfied: requests!=2.18.0,>=2.14.2 in /usr/local/lib/python3.7/site-packages (from docker==4.1.0.dev0) (2.20.0)
22:45:40 Requirement already satisfied: urllib3<1.25,>=1.21.1 in /usr/local/lib/python3.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==4.1.0.dev0) (1.24.3)
22:45:40 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==4.1.0.dev0) (2019.6.16)
22:45:40 Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /usr/local/lib/python3.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==4.1.0.dev0) (3.0.4)
22:45:40 Requirement already satisfied: idna<2.8,>=2.5 in /usr/local/lib/python3.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==4.1.0.dev0) (2.5)
22:45:40 Building wheels for collected packages: docker
22:45:40   Building wheel for docker (setup.py): started
22:45:40   Building wheel for docker (setup.py): finished with status 'done'
22:45:40   Created wheel for docker: filename=docker-4.1.0.dev0-py2.py3-none-any.whl size=139217 sha256=449b479a9c9a0c9d41acb7787c1084780ab670921145ec552fe67b82499e582f
22:45:40   Stored in directory: /tmp/pip-ephem-wheel-cache-u_8_qeub/wheels/ee/4d/f0/2a86c10b571f6f2e614d6de70cb18e96cf856ba00408408b23
22:45:40 Successfully built docker
22:45:40 Installing collected packages: docker
22:45:41 Successfully installed docker-4.1.0.dev0
22:45:41 Removing intermediate container 8fd6c22cd7ad
22:45:41  ---> fcc416b224cb
22:45:41 Successfully built fcc416b224cb
22:45:41 Successfully tagged dockerbuildbot/docker-py:py3-dae1b83a352c5fa42e69c57cdc0243842ebfd0f0