Skip to content

Console Output

20:08:47 + docker build -t dockerpinata/docker-py:py3-f9e7d6fed342476795f03b145ae33614ebd6cd14 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.10 .
20:08:47 Sending build context to Docker daemon  1.386MB

20:08:47 Step 1/23 : ARG PYTHON_VERSION=3.10
20:08:47 Step 2/23 : FROM python:${PYTHON_VERSION}
20:08:47  ---> 3a49f9c9c80e
20:08:47 Step 3/23 : ARG APT_MIRROR
20:08:47  ---> Using cache
20:08:47  ---> eba8d45db373
20:08:47 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
20:08:47  ---> Using cache
20:08:47  ---> be43587bd6bb
20:08:47 Step 5/23 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
20:08:47  ---> Using cache
20:08:47  ---> 75dc37eebddb
20:08:47 Step 6/23 : COPY tests/ssh/config/client /root/.ssh
20:08:47  ---> Using cache
20:08:47  ---> d24bc7f7af2f
20:08:47 Step 7/23 : COPY tests/ssh/config/server/known_ed25519.pub /root/.ssh/known_hosts
20:08:47  ---> Using cache
20:08:47  ---> 65514cc8a880
20:08:47 Step 8/23 : RUN sed -i '1s;^;dpy-dind-ssh ;' /root/.ssh/known_hosts
20:08:47  ---> Using cache
20:08:47  ---> 0cee4e82e2f8
20:08:47 Step 9/23 : RUN chmod -R 600 /root/.ssh
20:08:47  ---> Using cache
20:08:47  ---> c7c3bed1fe89
20:08:47 Step 10/23 : COPY ./tests/gpg-keys /gpg-keys
20:08:47  ---> Using cache
20:08:47  ---> 4df8d09b7a53
20:08:47 Step 11/23 : RUN gpg2 --import gpg-keys/secret
20:08:47  ---> Using cache
20:08:47  ---> cd5ebf8657ea
20:08:47 Step 12/23 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
20:08:47  ---> Using cache
20:08:47  ---> 8eb1383dca6b
20:08:47 Step 13/23 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
20:08:47  ---> Using cache
20:08:47  ---> a3851eab3ce7
20:08:47 Step 14/23 : RUN gpg2 --check-trustdb
20:08:47  ---> Using cache
20:08:47  ---> 7dd1fb38908a
20:08:47 Step 15/23 : ARG CREDSTORE_VERSION=v0.6.3
20:08:47  ---> Using cache
20:08:47  ---> 95679bdc769a
20:08:47 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
20:08:47  ---> Using cache
20:08:47  ---> 627dfb801605
20:08:47 Step 17/23 : WORKDIR /src
20:08:47  ---> Using cache
20:08:47  ---> 2c3230d3c0e4
20:08:47 Step 18/23 : COPY requirements.txt /src/requirements.txt
20:08:47  ---> Using cache
20:08:47  ---> 88ccc8d73fa5
20:08:47 Step 19/23 : RUN pip install -r requirements.txt
20:08:47  ---> Using cache
20:08:47  ---> d3f6277fb2e6
20:08:47 Step 20/23 : COPY test-requirements.txt /src/test-requirements.txt
20:08:47  ---> Using cache
20:08:47  ---> b531fe5cfa26
20:08:47 Step 21/23 : RUN pip install -r test-requirements.txt
20:08:47  ---> Using cache
20:08:47  ---> 0aac3705354e
20:08:47 Step 22/23 : COPY . /src
20:08:47  ---> 37ed6941a418
20:08:47 Step 23/23 : RUN pip install .
20:08:47  ---> Running in bc37549c2051
20:08:48 Processing /src
20:08:48   Preparing metadata (setup.py): started
20:08:48   Preparing metadata (setup.py): finished with status 'done'
20:08:48 Requirement already satisfied: packaging>=14.0 in /usr/local/lib/python3.10/site-packages (from docker==6.0.0.dev0) (21.3)
20:08:48 Requirement already satisfied: requests>=2.26.0 in /usr/local/lib/python3.10/site-packages (from docker==6.0.0.dev0) (2.28.1)
20:08:48 Requirement already satisfied: urllib3>=1.26.0 in /usr/local/lib/python3.10/site-packages (from docker==6.0.0.dev0) (1.26.11)
20:08:48 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)
20:08:48 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)
20:08:48 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)
20:08:48 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)
20:08:48 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)
20:08:48 Building wheels for collected packages: docker
20:08:48   Building wheel for docker (setup.py): started
20:08:49   Building wheel for docker (setup.py): finished with status 'done'
20:08:49   Created wheel for docker: filename=docker-6.0.0.dev0-py3-none-any.whl size=146556 sha256=a2abc639090f741c1009ffb850e8fb2f61ea7b9d0b6828fc5abbf28e237efe3f
20:08:49   Stored in directory: /tmp/pip-ephem-wheel-cache-r7dyvvso/wheels/5c/9b/23/f031c1877ee9aa5bf3ddc51ccc1ac38428d83c5d6eec32a03f
20:08:49 Successfully built docker
20:08:49 Installing collected packages: docker
20:08:49 Successfully installed docker-6.0.0.dev0
20:08:49 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
20:08:49 WARNING: You are using pip version 22.0.4; however, version 22.2.1 is available.
20:08:49 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
20:08:49 Removing intermediate container bc37549c2051
20:08:49  ---> 262e4314fd84
20:08:49 Successfully built 262e4314fd84
20:08:49 Successfully tagged dockerpinata/docker-py:py3-f9e7d6fed342476795f03b145ae33614ebd6cd14