Skip to content

Console Output

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

22:45:08 Step 1/19 : ARG PYTHON_VERSION=3.7
22:45:08 Step 2/19 : FROM python:${PYTHON_VERSION}
22:45:08  ---> 60e318e4984a
22:45:08 Step 3/19 : ARG APT_MIRROR
22:45:08  ---> Using cache
22:45:08  ---> eaddd09e91f5
22:45:08 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:08  ---> Using cache
22:45:08  ---> b1acf4734bf8
22:45:08 Step 5/19 : RUN apt-get update && apt-get -y install     gnupg2     pass     curl
22:45:08  ---> Using cache
22:45:08  ---> 24c08f02faaf
22:45:08 Step 6/19 : COPY ./tests/gpg-keys /gpg-keys
22:45:08  ---> Using cache
22:45:08  ---> 011f75645aa0
22:45:08 Step 7/19 : RUN gpg2 --import gpg-keys/secret
22:45:08  ---> Using cache
22:45:08  ---> 639d057e642f
22:45:08 Step 8/19 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
22:45:08  ---> Using cache
22:45:08  ---> d5de3bfbffa0
22:45:08 Step 9/19 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
22:45:08  ---> Using cache
22:45:08  ---> 80501451e6b3
22:45:08 Step 10/19 : RUN gpg2 --check-trustdb
22:45:08  ---> Using cache
22:45:08  ---> 5b7877cd5aaa
22:45:08 Step 11/19 : ARG CREDSTORE_VERSION=v0.6.3
22:45:08  ---> Using cache
22:45:08  ---> ef7f0c548d65
22:45:08 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:08  ---> Using cache
22:45:08  ---> 49fa5a9a53d1
22:45:08 Step 13/19 : WORKDIR /src
22:45:08  ---> Using cache
22:45:08  ---> d680ed7f3c1b
22:45:08 Step 14/19 : COPY requirements.txt /src/requirements.txt
22:45:08  ---> Using cache
22:45:08  ---> 597b65ea7aec
22:45:08 Step 15/19 : RUN pip install -r requirements.txt
22:45:08  ---> Using cache
22:45:08  ---> 5fd0b53ff0b0
22:45:08 Step 16/19 : COPY test-requirements.txt /src/test-requirements.txt
22:45:08  ---> Using cache
22:45:08  ---> b0a5381f5b40
22:45:08 Step 17/19 : RUN pip install -r test-requirements.txt
22:45:08  ---> Using cache
22:45:08  ---> e9c31d9b838a
22:45:08 Step 18/19 : COPY . /src
22:45:08  ---> Using cache
22:45:08  ---> e643cf89c56b
22:45:08 Step 19/19 : RUN pip install .
22:45:08  ---> Using cache
22:45:08  ---> fbf3876b1ba9
22:45:08 Successfully built fbf3876b1ba9
22:45:08 Successfully tagged dockerbuildbot/docker-py:py3-7b3b98ed52ca056f9dde918ff9ec9396ac1a36cc
Terminated