Skip to content

Console Output

19:03:59 + docker build -t dockerpinata/docker-py:py3-71a97ba934629aa9823dda7e60adad5401d43117 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.10 .
19:03:59 Sending build context to Docker daemon   1.38MB

19:03:59 Step 1/23 : ARG PYTHON_VERSION=3.10
19:03:59 Step 2/23 : FROM python:${PYTHON_VERSION}
19:03:59  ---> 3a49f9c9c80e
19:03:59 Step 3/23 : ARG APT_MIRROR
19:03:59  ---> Using cache
19:03:59  ---> 71d0bb5d0d8e
19:03:59 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:03:59  ---> Using cache
19:03:59  ---> 61878c0f9d91
19:03:59 Step 5/23 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
19:03:59  ---> Using cache
19:03:59  ---> b2cfd78b8433
19:03:59 Step 6/23 : COPY tests/ssh/config/client /root/.ssh
19:03:59  ---> Using cache
19:03:59  ---> e1a7aab9ed43
19:03:59 Step 7/23 : COPY tests/ssh/config/server/known_ed25519.pub /root/.ssh/known_hosts
19:03:59  ---> Using cache
19:03:59  ---> 73bac68965e1
19:03:59 Step 8/23 : RUN sed -i '1s;^;dpy-dind-ssh ;' /root/.ssh/known_hosts
19:03:59  ---> Using cache
19:03:59  ---> 7cc9123668ae
19:03:59 Step 9/23 : RUN chmod -R 600 /root/.ssh
19:03:59  ---> Using cache
19:03:59  ---> d438b6475db2
19:03:59 Step 10/23 : COPY ./tests/gpg-keys /gpg-keys
19:03:59  ---> Using cache
19:03:59  ---> 81b21d101f88
19:03:59 Step 11/23 : RUN gpg2 --import gpg-keys/secret
19:03:59  ---> Using cache
19:03:59  ---> 2b141eff93cf
19:03:59 Step 12/23 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
19:03:59  ---> Using cache
19:03:59  ---> 8bfaf213617b
19:03:59 Step 13/23 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
19:03:59  ---> Using cache
19:03:59  ---> d446d9cba5ea
19:03:59 Step 14/23 : RUN gpg2 --check-trustdb
19:03:59  ---> Using cache
19:03:59  ---> df3f0238b64b
19:03:59 Step 15/23 : ARG CREDSTORE_VERSION=v0.6.3
19:03:59  ---> Using cache
19:03:59  ---> 7e7dddbca3a4
19:03:59 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:03:59  ---> Using cache
19:03:59  ---> 0951805925bf
19:03:59 Step 17/23 : WORKDIR /src
19:03:59  ---> Using cache
19:03:59  ---> d9d709be8eec
19:03:59 Step 18/23 : COPY requirements.txt /src/requirements.txt
19:03:59  ---> Using cache
19:03:59  ---> 98c925ece894
19:03:59 Step 19/23 : RUN pip install -r requirements.txt
19:03:59  ---> Using cache
19:03:59  ---> 564e3297df5f
19:03:59 Step 20/23 : COPY test-requirements.txt /src/test-requirements.txt
19:03:59  ---> Using cache
19:03:59  ---> 2e3436cb3758
19:03:59 Step 21/23 : RUN pip install -r test-requirements.txt
19:03:59  ---> Using cache
19:03:59  ---> 1576314e0823
19:03:59 Step 22/23 : COPY . /src
19:04:00  ---> f54f1c687fc6
19:04:00 Step 23/23 : RUN pip install .
19:04:00  ---> Running in c480b6b46ef8
19:04:00 Processing /src
19:04:00   Preparing metadata (setup.py): started
19:04:00   Preparing metadata (setup.py): finished with status 'done'
19:04:00 Requirement already satisfied: packaging in /usr/local/lib/python3.10/site-packages (from docker==5.1.0.dev0) (21.3)
19:04:00 Requirement already satisfied: websocket-client>=0.32.0 in /usr/local/lib/python3.10/site-packages (from docker==5.1.0.dev0) (0.56.0)
19:04:00 Requirement already satisfied: requests!=2.18.0,>=2.14.2 in /usr/local/lib/python3.10/site-packages (from docker==5.1.0.dev0) (2.26.0)
19:04:00 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/site-packages (from requests!=2.18.0,>=2.14.2->docker==5.1.0.dev0) (2.5)
19:04:00 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/site-packages (from requests!=2.18.0,>=2.14.2->docker==5.1.0.dev0) (2022.6.15)
19:04:00 Requirement already satisfied: urllib3<1.27,>=1.21.1 in /usr/local/lib/python3.10/site-packages (from requests!=2.18.0,>=2.14.2->docker==5.1.0.dev0) (1.26.5)
19:04:00 Requirement already satisfied: charset-normalizer~=2.0.0 in /usr/local/lib/python3.10/site-packages (from requests!=2.18.0,>=2.14.2->docker==5.1.0.dev0) (2.0.12)
19:04:00 Requirement already satisfied: six in /usr/local/lib/python3.10/site-packages (from websocket-client>=0.32.0->docker==5.1.0.dev0) (1.16.0)
19:04:00 Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/local/lib/python3.10/site-packages (from packaging->docker==5.1.0.dev0) (2.2.0)
19:04:00 Building wheels for collected packages: docker
19:04:00   Building wheel for docker (setup.py): started
19:04:01   Building wheel for docker (setup.py): finished with status 'done'
19:04:01   Created wheel for docker: filename=docker-5.1.0.dev0-py3-none-any.whl size=145799 sha256=38548fd889b278d5d12aa0a7e8d15a275ad4d8685c3488ccf05fda0e77be96e5
19:04:01   Stored in directory: /tmp/pip-ephem-wheel-cache-_yv5eryh/wheels/5c/9b/23/f031c1877ee9aa5bf3ddc51ccc1ac38428d83c5d6eec32a03f
19:04:01 Successfully built docker
19:04:01 Installing collected packages: docker
19:04:01 Successfully installed docker-5.1.0.dev0
19:04:01 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:04:01 WARNING: You are using pip version 22.0.4; however, version 22.2.1 is available.
19:04:01 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
19:04:02 Removing intermediate container c480b6b46ef8
19:04:02  ---> c788225a9d4d
19:04:02 Successfully built c788225a9d4d
19:04:02 Successfully tagged dockerpinata/docker-py:py3-71a97ba934629aa9823dda7e60adad5401d43117