Console Output
16:43:49 + docker build -t dockerpinata/docker-py:py3-3f0095a7c1966c521652314e524ff362c24ff58c -f tests/Dockerfile --build-arg PYTHON_VERSION=3.10 .
16:43:49 Sending build context to Docker daemon 1.391MB
16:43:49 Step 1/24 : ARG PYTHON_VERSION=3.10
16:43:49 Step 2/24 : FROM python:${PYTHON_VERSION}
16:43:49 ---> 3a49f9c9c80e
16:43:49 Step 3/24 : ARG APT_MIRROR
16:43:49 ---> Using cache
16:43:49 ---> 8d085724cf5f
16:43:49 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
16:43:49 ---> Using cache
16:43:49 ---> 6391d58cbd8c
16:43:49 Step 5/24 : RUN apt-get update && apt-get -y install --no-install-recommends gnupg2 pass
16:43:49 ---> Using cache
16:43:49 ---> cf49047fb3a5
16:43:49 Step 6/24 : COPY tests/ssh/config/client /root/.ssh
16:43:49 ---> Using cache
16:43:49 ---> 2f5c35d0f6a2
16:43:49 Step 7/24 : COPY tests/ssh/config/server/known_ed25519.pub /root/.ssh/known_hosts
16:43:49 ---> Using cache
16:43:49 ---> 2b59904d3e10
16:43:49 Step 8/24 : RUN sed -i '1s;^;dpy-dind-ssh ;' /root/.ssh/known_hosts
16:43:49 ---> Using cache
16:43:49 ---> b953921d0862
16:43:49 Step 9/24 : RUN chmod -R 600 /root/.ssh
16:43:49 ---> Using cache
16:43:49 ---> a818fa6cfa94
16:43:49 Step 10/24 : COPY ./tests/gpg-keys /gpg-keys
16:43:49 ---> Using cache
16:43:49 ---> 1487b7d64799
16:43:49 Step 11/24 : RUN gpg2 --import gpg-keys/secret
16:43:49 ---> Using cache
16:43:49 ---> 129de940b05d
16:43:49 Step 12/24 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
16:43:49 ---> Using cache
16:43:49 ---> 70d2dbb715af
16:43:49 Step 13/24 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
16:43:49 ---> Using cache
16:43:49 ---> 6675f4c68903
16:43:49 Step 14/24 : RUN gpg2 --check-trustdb
16:43:49 ---> Using cache
16:43:49 ---> 8381c3f771cb
16:43:49 Step 15/24 : ARG CREDSTORE_VERSION=v0.6.3
16:43:49 ---> Using cache
16:43:49 ---> 0e30af0c2b5b
16:43:49 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
16:43:49 ---> Using cache
16:43:49 ---> 90c266a48a28
16:43:49 Step 17/24 : WORKDIR /src
16:43:49 ---> Using cache
16:43:49 ---> 30846c8f3c74
16:43:49 Step 18/24 : COPY requirements.txt /src/requirements.txt
16:43:49 ---> Using cache
16:43:49 ---> 97e2467e789c
16:43:49 Step 19/24 : RUN --mount=type=cache,target=/root/.cache/pip pip install -r requirements.txt
16:43:49 the --mount option requires BuildKit. Refer to https://docs.docker.com/go/buildkit/ to learn how to build images with BuildKit enabled