Console Output
14:20:13 + docker build -t dockerpinata/docker-py:py3-42789818bed5d86b487a030e2e60b02bf0cfa284 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.10 .
14:20:13 Sending build context to Docker daemon 1.39MB
14:20:13 Step 1/24 : ARG PYTHON_VERSION=3.10
14:20:13 Step 2/24 : FROM python:${PYTHON_VERSION}
14:20:13 ---> e35e775abbec
14:20:13 Step 3/24 : ARG APT_MIRROR
14:20:13 ---> Using cache
14:20:13 ---> d658d6b15049
14:20:13 Step 4/24 : 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
14:20:13 ---> Using cache
14:20:13 ---> 20563c1cd7bc
14:20:13 Step 5/24 : RUN apt-get update && apt-get -y install --no-install-recommends gnupg2 pass
14:20:13 ---> Using cache
14:20:13 ---> 52907a8ece99
14:20:13 Step 6/24 : COPY tests/ssh/config/client /root/.ssh
14:20:13 ---> Using cache
14:20:13 ---> 546b3e0ef2ac
14:20:13 Step 7/24 : COPY tests/ssh/config/server/known_ed25519.pub /root/.ssh/known_hosts
14:20:13 ---> Using cache
14:20:13 ---> 0fb5e8db9c55
14:20:13 Step 8/24 : RUN sed -i '1s;^;dpy-dind-ssh ;' /root/.ssh/known_hosts
14:20:13 ---> Using cache
14:20:13 ---> 3e819dc6bcdd
14:20:13 Step 9/24 : RUN chmod -R 600 /root/.ssh
14:20:13 ---> Using cache
14:20:13 ---> c1c7d1aa3d7e
14:20:13 Step 10/24 : COPY ./tests/gpg-keys /gpg-keys
14:20:13 ---> Using cache
14:20:13 ---> 843e3d0a97d5
14:20:13 Step 11/24 : RUN gpg2 --import gpg-keys/secret
14:20:13 ---> Using cache
14:20:13 ---> 3cc406015329
14:20:13 Step 12/24 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
14:20:13 ---> Using cache
14:20:13 ---> b711adaf99ea
14:20:13 Step 13/24 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
14:20:13 ---> Using cache
14:20:13 ---> 88d96a7dd1e4
14:20:13 Step 14/24 : RUN gpg2 --check-trustdb
14:20:13 ---> Using cache
14:20:13 ---> e96ca869b03c
14:20:13 Step 15/24 : ARG CREDSTORE_VERSION=v0.6.3
14:20:13 ---> Using cache
14:20:13 ---> 77d37be28eec
14:20:13 Step 16/24 : 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
14:20:13 ---> Using cache
14:20:13 ---> 5c49ee59c4a9
14:20:13 Step 17/24 : WORKDIR /src
14:20:13 ---> Using cache
14:20:13 ---> 295f24287d93
14:20:13 Step 18/24 : COPY requirements.txt /src/requirements.txt
14:20:13 ---> Using cache
14:20:13 ---> e136d202d2a7
14:20:13 Step 19/24 : RUN --mount=type=cache,target=/root/.cache/pip pip install -r requirements.txt
14:20:13 the --mount option requires BuildKit. Refer to https://docs.docker.com/go/buildkit/ to learn how to build images with BuildKit enabled