Skip to content

Console Output

19:56:27 + docker build -t dockerpinata/docker-py:py3-2fa56879a2f978387d230db087003d79eb2762d0 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
19:56:27 Sending build context to Docker daemon  1.369MB

19:56:27 Step 1/21 : ARG PYTHON_VERSION=3.7
19:56:27 Step 2/21 : FROM python:${PYTHON_VERSION}
19:56:27  ---> f5e6a48f70ac
19:56:27 Step 3/21 : ARG APT_MIRROR
19:56:27  ---> Using cache
19:56:27  ---> f26db62d641d
19:56:27 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
19:56:27  ---> Using cache
19:56:27  ---> 4dfda7adea71
19:56:27 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
19:56:27  ---> Using cache
19:56:27  ---> 90f8d49dcce2
19:56:27 Step 6/21 : COPY tests/ssh-keys /root/.ssh
19:56:27  ---> Using cache
19:56:27  ---> c586bcf9daae
19:56:27 Step 7/21 : RUN chmod -R 600 /root/.ssh
19:56:27  ---> Using cache
19:56:27  ---> f1de96935691
19:56:27 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
19:56:27  ---> Using cache
19:56:27  ---> cd115d7c2889
19:56:27 Step 9/21 : RUN gpg2 --import gpg-keys/secret
19:56:27  ---> Using cache
19:56:27  ---> 39a0b496c66e
19:56:27 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
19:56:27  ---> Using cache
19:56:27  ---> ade93f9c551f
19:56:27 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
19:56:27  ---> Using cache
19:56:27  ---> 9334c2ea3417
19:56:27 Step 12/21 : RUN gpg2 --check-trustdb
19:56:27  ---> Using cache
19:56:27  ---> b5a5b196bb7e
19:56:27 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
19:56:27  ---> Using cache
19:56:27  ---> bd3bb5ec8785
19:56:27 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
19:56:27  ---> Using cache
19:56:27  ---> b5a9464369fb
19:56:27 Step 15/21 : WORKDIR /src
19:56:27  ---> Using cache
19:56:27  ---> e163796223de
19:56:27 Step 16/21 : COPY requirements.txt /src/requirements.txt
19:56:27  ---> Using cache
19:56:27  ---> 25df2f1e3a39
19:56:27 Step 17/21 : RUN pip install -r requirements.txt
19:56:27  ---> Using cache
19:56:27  ---> 21bd2135baf6
19:56:27 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
19:56:27  ---> Using cache
19:56:27  ---> 91646ee9868e
19:56:27 Step 19/21 : RUN pip install -r test-requirements.txt
19:56:27  ---> Using cache
19:56:27  ---> 38b70a432700
19:56:27 Step 20/21 : COPY . /src
19:56:27  ---> Using cache
19:56:27  ---> 062f01dc115d
19:56:27 Step 21/21 : RUN pip install .
19:56:27  ---> Using cache
19:56:27  ---> 881d86dc2553
19:56:27 Successfully built 881d86dc2553
19:56:27 Successfully tagged dockerpinata/docker-py:py3-2fa56879a2f978387d230db087003d79eb2762d0