Skip to content

Console Output

19:09:35 + docker build -t dockerpinata/docker-py:py3-1c27ec1f0c34f6b9510f5caadada5fd8ecc430d9 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.10 .
19:09:35 Sending build context to Docker daemon  1.399MB

19:09:35 Step 1/24 : ARG PYTHON_VERSION=3.10
19:09:35 Step 2/24 : FROM python:${PYTHON_VERSION}
19:09:35  ---> b62e4294564c
19:09:35 Step 3/24 : ARG APT_MIRROR
19:09:35  ---> Using cache
19:09:35  ---> fc9175858dc5
19:09:35 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
19:09:35  ---> Using cache
19:09:35  ---> 0a1ef97c62d2
19:09:35 Step 5/24 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
19:09:35  ---> Using cache
19:09:35  ---> 784f05fcbd15
19:09:35 Step 6/24 : COPY tests/ssh/config/client /root/.ssh
19:09:35  ---> Using cache
19:09:35  ---> b60a26abce6f
19:09:35 Step 7/24 : COPY tests/ssh/config/server/known_ed25519.pub /root/.ssh/known_hosts
19:09:35  ---> Using cache
19:09:35  ---> 9742704af6dc
19:09:35 Step 8/24 : RUN sed -i '1s;^;dpy-dind-ssh ;' /root/.ssh/known_hosts
19:09:35  ---> Using cache
19:09:35  ---> 31071a0dfd8d
19:09:35 Step 9/24 : RUN chmod -R 600 /root/.ssh
19:09:35  ---> Using cache
19:09:35  ---> 02cb70155a7f
19:09:35 Step 10/24 : COPY ./tests/gpg-keys /gpg-keys
19:09:35  ---> Using cache
19:09:35  ---> cc274141b795
19:09:35 Step 11/24 : RUN gpg2 --import gpg-keys/secret
19:09:35  ---> Using cache
19:09:35  ---> 74332d640adb
19:09:35 Step 12/24 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
19:09:35  ---> Using cache
19:09:35  ---> 5332909c3640
19:09:35 Step 13/24 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
19:09:35  ---> Using cache
19:09:35  ---> 4e8a54a46f96
19:09:35 Step 14/24 : RUN gpg2 --check-trustdb
19:09:35  ---> Using cache
19:09:35  ---> 47c999f90c77
19:09:35 Step 15/24 : ARG CREDSTORE_VERSION=v0.6.3
19:09:35  ---> Using cache
19:09:35  ---> 35133c9bab75
19:09:35 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
19:09:35  ---> Using cache
19:09:35  ---> 1f688c7a3ee2
19:09:35 Step 17/24 : WORKDIR /src
19:09:35  ---> Using cache
19:09:35  ---> 4d9b45a8a42c
19:09:35 Step 18/24 : COPY requirements.txt /src/requirements.txt
19:09:35  ---> Using cache
19:09:35  ---> 3407bfd29e2a
19:09:35 Step 19/24 : RUN --mount=type=cache,target=/root/.cache/pip     pip install -r requirements.txt
19:09:35 the --mount option requires BuildKit. Refer to https://docs.docker.com/go/buildkit/ to learn how to build images with BuildKit enabled