Skip to content

Console Output

19:54:21 + docker build -t dockerpinata/docker-py:py3-28dd40c1d34c5dbeaa104f17c7ebd5c1046df2f2 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.10 .
19:54:21 Sending build context to Docker daemon  1.385MB

19:54:21 Step 1/23 : ARG PYTHON_VERSION=3.10
19:54:21 Step 2/23 : FROM python:${PYTHON_VERSION}
19:54:21  ---> 3a49f9c9c80e
19:54:21 Step 3/23 : ARG APT_MIRROR
19:54:21  ---> Using cache
19:54:21  ---> eba8d45db373
19:54:21 Step 4/23 : 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:54:21  ---> Using cache
19:54:21  ---> be43587bd6bb
19:54:21 Step 5/23 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
19:54:21  ---> Using cache
19:54:21  ---> 75dc37eebddb
19:54:21 Step 6/23 : COPY tests/ssh/config/client /root/.ssh
19:54:21  ---> Using cache
19:54:21  ---> d24bc7f7af2f
19:54:21 Step 7/23 : COPY tests/ssh/config/server/known_ed25519.pub /root/.ssh/known_hosts
19:54:21  ---> Using cache
19:54:21  ---> 65514cc8a880
19:54:21 Step 8/23 : RUN sed -i '1s;^;dpy-dind-ssh ;' /root/.ssh/known_hosts
19:54:21  ---> Using cache
19:54:21  ---> 0cee4e82e2f8
19:54:21 Step 9/23 : RUN chmod -R 600 /root/.ssh
19:54:21  ---> Using cache
19:54:21  ---> c7c3bed1fe89
19:54:21 Step 10/23 : COPY ./tests/gpg-keys /gpg-keys
19:54:21  ---> Using cache
19:54:21  ---> 4df8d09b7a53
19:54:21 Step 11/23 : RUN gpg2 --import gpg-keys/secret
19:54:21  ---> Using cache
19:54:21  ---> cd5ebf8657ea
19:54:21 Step 12/23 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
19:54:21  ---> Using cache
19:54:21  ---> 8eb1383dca6b
19:54:21 Step 13/23 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
19:54:21  ---> Using cache
19:54:21  ---> a3851eab3ce7
19:54:21 Step 14/23 : RUN gpg2 --check-trustdb
19:54:21  ---> Using cache
19:54:21  ---> 7dd1fb38908a
19:54:21 Step 15/23 : ARG CREDSTORE_VERSION=v0.6.3
19:54:21  ---> Using cache
19:54:21  ---> 95679bdc769a
19:54:21 Step 16/23 : 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:54:21  ---> Using cache
19:54:21  ---> 627dfb801605
19:54:21 Step 17/23 : WORKDIR /src
19:54:21  ---> Using cache
19:54:21  ---> 2c3230d3c0e4
19:54:21 Step 18/23 : COPY requirements.txt /src/requirements.txt
19:54:21  ---> Using cache
19:54:21  ---> 88ccc8d73fa5
19:54:21 Step 19/23 : RUN pip install -r requirements.txt
19:54:21  ---> Using cache
19:54:21  ---> d3f6277fb2e6
19:54:21 Step 20/23 : COPY test-requirements.txt /src/test-requirements.txt
19:54:21  ---> Using cache
19:54:21  ---> b531fe5cfa26
19:54:21 Step 21/23 : RUN pip install -r test-requirements.txt
19:54:21  ---> Using cache
19:54:21  ---> 0aac3705354e
19:54:21 Step 22/23 : COPY . /src
19:54:22  ---> 944e68707ce2
19:54:22 Step 23/23 : RUN pip install .
19:54:22  ---> Running in 7507fdc856ec
19:54:22 Processing /src
19:54:22   Preparing metadata (setup.py): started
19:54:22   Preparing metadata (setup.py): finished with status 'done'
19:54:22 Requirement already satisfied: packaging>=14.0 in /usr/local/lib/python3.10/site-packages (from docker==6.0.0.dev0) (21.3)
19:54:22 Requirement already satisfied: requests>=2.26.0 in /usr/local/lib/python3.10/site-packages (from docker==6.0.0.dev0) (2.28.1)
19:54:22 Requirement already satisfied: urllib3>=1.26.0 in /usr/local/lib/python3.10/site-packages (from docker==6.0.0.dev0) (1.26.11)
19:54:22 Requirement already satisfied: websocket-client>=0.32.0 in /usr/local/lib/python3.10/site-packages (from docker==6.0.0.dev0) (1.3.3)
19:54:22 Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/local/lib/python3.10/site-packages (from packaging>=14.0->docker==6.0.0.dev0) (3.0.9)
19:54:22 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/site-packages (from requests>=2.26.0->docker==6.0.0.dev0) (2022.6.15)
19:54:22 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/site-packages (from requests>=2.26.0->docker==6.0.0.dev0) (3.3)
19:54:22 Requirement already satisfied: charset-normalizer<3,>=2 in /usr/local/lib/python3.10/site-packages (from requests>=2.26.0->docker==6.0.0.dev0) (2.1.0)
19:54:22 Building wheels for collected packages: docker
19:54:22   Building wheel for docker (setup.py): started
19:54:23   Building wheel for docker (setup.py): finished with status 'done'
19:54:23   Created wheel for docker: filename=docker-6.0.0.dev0-py3-none-any.whl size=146220 sha256=6a3018dea96df483808fa6361682e0ecff972584caca072e238bff28a9933116
19:54:23   Stored in directory: /tmp/pip-ephem-wheel-cache-ns9wzdvb/wheels/5c/9b/23/f031c1877ee9aa5bf3ddc51ccc1ac38428d83c5d6eec32a03f
19:54:23 Successfully built docker
19:54:23 Installing collected packages: docker
19:54:23 Successfully installed docker-6.0.0.dev0
19:54:23 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
19:54:23 WARNING: You are using pip version 22.0.4; however, version 22.2.1 is available.
19:54:23 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
19:54:24 Removing intermediate container 7507fdc856ec
19:54:24  ---> d839fbb81311
19:54:24 Successfully built d839fbb81311
19:54:24 Successfully tagged dockerpinata/docker-py:py3-28dd40c1d34c5dbeaa104f17c7ebd5c1046df2f2