Skip to content

Console Output

18:52:04 + docker build -t dockerpinata/docker-py:py3-0031ac2186406c9b48c6fc5253affd4b62fef0f5 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.10 .
18:52:04 Sending build context to Docker daemon  1.384MB

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