Skip to content

Console Output

21:26:40 + docker build -t dockerpinata/docker-py:py3-f9b85586ca7244ada8b66a4dab1fd324caccbe24 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
21:26:40 Sending build context to Docker daemon  1.369MB

21:26:40 Step 1/21 : ARG PYTHON_VERSION=3.7
21:26:40 Step 2/21 : FROM python:${PYTHON_VERSION}
21:26:40  ---> af86b73e120c
21:26:40 Step 3/21 : ARG APT_MIRROR
21:26:40  ---> Using cache
21:26:40  ---> f5ed629bee05
21:26:40 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
21:26:40  ---> Using cache
21:26:40  ---> be6ffc07c90d
21:26:40 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
21:26:40  ---> Using cache
21:26:40  ---> 21202bcde532
21:26:40 Step 6/21 : COPY tests/ssh-keys /root/.ssh
21:26:40  ---> Using cache
21:26:40  ---> 0a5a23bd698c
21:26:40 Step 7/21 : RUN chmod -R 600 /root/.ssh
21:26:40  ---> Using cache
21:26:40  ---> 7019ecdae97c
21:26:40 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
21:26:40  ---> Using cache
21:26:40  ---> 9cb050823cc8
21:26:40 Step 9/21 : RUN gpg2 --import gpg-keys/secret
21:26:40  ---> Using cache
21:26:40  ---> 83ec2508a7bc
21:26:40 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
21:26:40  ---> Using cache
21:26:40  ---> 79f6491db1d8
21:26:40 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
21:26:40  ---> Using cache
21:26:40  ---> b4386ea67d8c
21:26:40 Step 12/21 : RUN gpg2 --check-trustdb
21:26:40  ---> Using cache
21:26:40  ---> 8974a3e08f52
21:26:40 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
21:26:40  ---> Using cache
21:26:40  ---> 8b3ce9b1ed3e
21:26:40 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
21:26:40  ---> Using cache
21:26:40  ---> acb7837f4550
21:26:40 Step 15/21 : WORKDIR /src
21:26:40  ---> Using cache
21:26:40  ---> ce3a5fc3f774
21:26:40 Step 16/21 : COPY requirements.txt /src/requirements.txt
21:26:40  ---> Using cache
21:26:40  ---> 5addbafcbbd3
21:26:40 Step 17/21 : RUN pip install -r requirements.txt
21:26:40  ---> Using cache
21:26:40  ---> 115726e79127
21:26:40 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
21:26:40  ---> Using cache
21:26:40  ---> 2343f50fae9b
21:26:40 Step 19/21 : RUN pip install -r test-requirements.txt
21:26:40  ---> Using cache
21:26:40  ---> a225aaf4c709
21:26:40 Step 20/21 : COPY . /src
21:26:40  ---> Using cache
21:26:40  ---> 367f0c4a85a0
21:26:40 Step 21/21 : RUN pip install .
21:26:40  ---> Using cache
21:26:40  ---> 94b31299f586
21:26:40 Successfully built 94b31299f586
21:26:40 Successfully tagged dockerpinata/docker-py:py3-f9b85586ca7244ada8b66a4dab1fd324caccbe24