Skip to content

Console Output

19:17:21 + docker build -t dockerpinata/docker-py:py3-3925abd2034bb93628f4ac888251bc2206d9263d -f tests/Dockerfile --build-arg PYTHON_VERSION=3.10 .
19:17:21 Sending build context to Docker daemon  1.384MB

19:17:21 Step 1/23 : ARG PYTHON_VERSION=3.10
19:17:21 Step 2/23 : FROM python:${PYTHON_VERSION}
19:17:21  ---> 3a49f9c9c80e
19:17:21 Step 3/23 : ARG APT_MIRROR
19:17:21  ---> Using cache
19:17:21  ---> e9327fcffaa2
19:17: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:17:21  ---> Using cache
19:17:21  ---> 869cdbedebb8
19:17:21 Step 5/23 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
19:17:21  ---> Using cache
19:17:21  ---> d2d9dfd3adbf
19:17:21 Step 6/23 : COPY tests/ssh/config/client /root/.ssh
19:17:21  ---> Using cache
19:17:21  ---> 9ee1f84915f8
19:17:21 Step 7/23 : COPY tests/ssh/config/server/known_ed25519.pub /root/.ssh/known_hosts
19:17:21  ---> Using cache
19:17:21  ---> 97e2b9d1cb3b
19:17:21 Step 8/23 : RUN sed -i '1s;^;dpy-dind-ssh ;' /root/.ssh/known_hosts
19:17:21  ---> Using cache
19:17:21  ---> c9546f5d6acb
19:17:21 Step 9/23 : RUN chmod -R 600 /root/.ssh
19:17:21  ---> Using cache
19:17:21  ---> 2f875a1cbe5b
19:17:21 Step 10/23 : COPY ./tests/gpg-keys /gpg-keys
19:17:21  ---> Using cache
19:17:21  ---> 339dde149052
19:17:21 Step 11/23 : RUN gpg2 --import gpg-keys/secret
19:17:21  ---> Using cache
19:17:21  ---> 72752c7505d5
19:17:21 Step 12/23 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
19:17:21  ---> Using cache
19:17:21  ---> ad5ef2d8777b
19:17:21 Step 13/23 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
19:17:21  ---> Using cache
19:17:21  ---> f2e500b2e2c1
19:17:21 Step 14/23 : RUN gpg2 --check-trustdb
19:17:21  ---> Using cache
19:17:21  ---> 16d8ecff5dac
19:17:21 Step 15/23 : ARG CREDSTORE_VERSION=v0.6.3
19:17:21  ---> Using cache
19:17:21  ---> 1c32d003ca52
19:17: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:17:21  ---> Using cache
19:17:21  ---> 45143e3d7bf2
19:17:21 Step 17/23 : WORKDIR /src
19:17:21  ---> Using cache
19:17:21  ---> ab948451d751
19:17:21 Step 18/23 : COPY requirements.txt /src/requirements.txt
19:17:21  ---> Using cache
19:17:21  ---> c815c371b35f
19:17:21 Step 19/23 : RUN pip install -r requirements.txt
19:17:21  ---> Using cache
19:17:21  ---> def49d7704f2
19:17:21 Step 20/23 : COPY test-requirements.txt /src/test-requirements.txt
19:17:21  ---> Using cache
19:17:21  ---> a579e81ef678
19:17:21 Step 21/23 : RUN pip install -r test-requirements.txt
19:17:21  ---> Using cache
19:17:21  ---> 4452707635f8
19:17:21 Step 22/23 : COPY . /src
19:17:21  ---> ce8234c762cf
19:17:21 Step 23/23 : RUN pip install .
19:17:21  ---> Running in 3610d3684d81
19:17:22 Processing /src
19:17:22   Preparing metadata (setup.py): started
19:17:22   Preparing metadata (setup.py): finished with status 'done'
19:17:22 Requirement already satisfied: packaging>=14.0 in /usr/local/lib/python3.10/site-packages (from docker==6.0.0.dev0) (21.3)
19:17: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:17: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:17: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:17: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:17: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:17: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:17: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:17:22 Building wheels for collected packages: docker
19:17:22   Building wheel for docker (setup.py): started
19:17:22   Building wheel for docker (setup.py): finished with status 'done'
19:17:22   Created wheel for docker: filename=docker-6.0.0.dev0-py3-none-any.whl size=146148 sha256=bc5001ebdad614a880db5370d5bb56226d1abcc68aad63b32a3cbdb9b9998b94
19:17:22   Stored in directory: /tmp/pip-ephem-wheel-cache-4pifek6g/wheels/5c/9b/23/f031c1877ee9aa5bf3ddc51ccc1ac38428d83c5d6eec32a03f
19:17:22 Successfully built docker
19:17:22 Installing collected packages: docker
19:17:23 Successfully installed docker-6.0.0.dev0
19:17: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:17:23 WARNING: You are using pip version 22.0.4; however, version 22.2.1 is available.
19:17:23 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
19:17:23 Removing intermediate container 3610d3684d81
19:17:23  ---> 88e477c61dbe
19:17:23 Successfully built 88e477c61dbe
19:17:23 Successfully tagged dockerpinata/docker-py:py3-3925abd2034bb93628f4ac888251bc2206d9263d