Skip to content

Console Output

09:00:42 + docker build -t dockerpinata/docker-py:py3-58cb4d98f60cda2f416edc59ad402da69e2e068a -f tests/Dockerfile --build-arg PYTHON_VERSION=3.10 .
09:00:42 Sending build context to Docker daemon  1.393MB

09:00:42 Step 1/24 : ARG PYTHON_VERSION=3.10
09:00:42 Step 2/24 : FROM python:${PYTHON_VERSION}
09:00:42  ---> ae9660359c2a
09:00:42 Step 3/24 : ARG APT_MIRROR
09:00:42  ---> Using cache
09:00:42  ---> 0e54588e49e2
09:00:42 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
09:00:42  ---> Using cache
09:00:42  ---> 22f0f0b93c39
09:00:42 Step 5/24 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
09:00:42  ---> Using cache
09:00:42  ---> 4405b2d27c72
09:00:42 Step 6/24 : COPY tests/ssh/config/client /root/.ssh
09:00:42  ---> Using cache
09:00:42  ---> 28090bd3bf52
09:00:42 Step 7/24 : COPY tests/ssh/config/server/known_ed25519.pub /root/.ssh/known_hosts
09:00:42  ---> Using cache
09:00:42  ---> 308ed3e78e8e
09:00:42 Step 8/24 : RUN sed -i '1s;^;dpy-dind-ssh ;' /root/.ssh/known_hosts
09:00:42  ---> Using cache
09:00:42  ---> 6294ef8ab819
09:00:42 Step 9/24 : RUN chmod -R 600 /root/.ssh
09:00:42  ---> Using cache
09:00:42  ---> 731e8dcda1ea
09:00:42 Step 10/24 : COPY ./tests/gpg-keys /gpg-keys
09:00:42  ---> Using cache
09:00:42  ---> 0d5515e8305f
09:00:42 Step 11/24 : RUN gpg2 --import gpg-keys/secret
09:00:42  ---> Using cache
09:00:42  ---> 5c93c9fa6667
09:00:42 Step 12/24 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
09:00:42  ---> Using cache
09:00:42  ---> af24ea7e1413
09:00:42 Step 13/24 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
09:00:42  ---> Using cache
09:00:42  ---> 7617a38df201
09:00:42 Step 14/24 : RUN gpg2 --check-trustdb
09:00:42  ---> Using cache
09:00:42  ---> 4f3cbdd0b69e
09:00:42 Step 15/24 : ARG CREDSTORE_VERSION=v0.6.3
09:00:42  ---> Using cache
09:00:42  ---> b46b186c49bd
09:00:42 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
09:00:42  ---> Using cache
09:00:42  ---> 21bed0dc4542
09:00:42 Step 17/24 : WORKDIR /src
09:00:42  ---> Using cache
09:00:42  ---> d137d0fecd51
09:00:42 Step 18/24 : COPY requirements.txt /src/requirements.txt
09:00:42  ---> Using cache
09:00:42  ---> a61ee1de5d28
09:00:42 Step 19/24 : RUN --mount=type=cache,target=/root/.cache/pip     pip install -r requirements.txt
09:00:42 the --mount option requires BuildKit. Refer to https://docs.docker.com/go/buildkit/ to learn how to build images with BuildKit enabled