Skip to content

Console Output

17:54:12 + docker build -t dockerpinata/docker-py:py3-f8b35bb63490e3b21d5dc8af960495b54dd8fc55 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
17:54:12 Sending build context to Docker daemon  1.374MB

17:54:12 Step 1/21 : ARG PYTHON_VERSION=3.7
17:54:12 Step 2/21 : FROM python:${PYTHON_VERSION}
17:54:12 3.7: Pulling from library/python
17:54:12 d836772a1c1f: Already exists
17:54:12 66a9e63c657a: Already exists
17:54:12 d1989b6e74cf: Already exists
17:54:12 c28818711e1e: Already exists
17:54:12 5084fa7ebd74: Already exists
17:54:12 7f162c881e4f: Already exists
17:54:12 fa5c3534431d: Already exists
17:54:12 30596f5e8e78: Already exists
17:54:12 4861fe1f6551: Already exists
17:54:12 Digest: sha256:7f9798664c8b1cdaccc19f1b90105a27db736c861c8184198dc7a8c01f82ccec
17:54:12 Status: Downloaded newer image for python:3.7
17:54:12  ---> 142b92ebe662
17:54:12 Step 3/21 : ARG APT_MIRROR
17:54:12  ---> Running in b19dcccb8f07
17:54:12 Removing intermediate container b19dcccb8f07
17:54:12  ---> c6cc08cc171e
17:54:12 Step 4/21 : 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
17:54:12  ---> Running in 1a9439c448ff
17:54:13 Removing intermediate container 1a9439c448ff
17:54:13  ---> 1d9b2baf0c23
17:54:13 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
17:54:13  ---> Running in 8daced1b8e98
17:54:14 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB]
17:54:14 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB]
17:54:14 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]
17:54:14 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8182 kB]
17:54:14 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [167 kB]
17:54:14 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [2592 B]
17:54:15 Fetched 8560 kB in 2s (5500 kB/s)
17:54:15 Reading package lists...
17:54:16 Reading package lists...
17:54:16 Building dependency tree...
17:54:16 Reading state information...
17:54:16 The following additional packages will be installed:
17:54:16   tree
17:54:16 Suggested packages:
17:54:16   python libxml-simple-perl ruby
17:54:16 Recommended packages:
17:54:16   qrencode xclip
17:54:16 The following NEW packages will be installed:
17:54:16   gnupg2 pass tree
17:54:16 0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
17:54:16 Need to get 523 kB of archives.
17:54:16 After this operation, 727 kB of additional disk space will be used.
17:54:16 Get:1 http://deb.debian.org/debian bullseye/main amd64 gnupg2 all 2.2.27-2+deb11u2 [434 kB]
17:54:16 Get:2 http://deb.debian.org/debian bullseye/main amd64 tree amd64 1.8.0-1+b1 [49.6 kB]
17:54:16 Get:3 http://deb.debian.org/debian bullseye/main amd64 pass all 1.7.3-2 [39.2 kB]
17:54:16 debconf: delaying package configuration, since apt-utils is not installed
17:54:16 Fetched 523 kB in 0s (1883 kB/s)
17:54:16 Selecting previously unselected package gnupg2.
17:54:16 (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 23421 files and directories currently installed.)
17:54:16 Preparing to unpack .../gnupg2_2.2.27-2+deb11u2_all.deb ...
17:54:16 Unpacking gnupg2 (2.2.27-2+deb11u2) ...
17:54:16 Selecting previously unselected package tree.
17:54:16 Preparing to unpack .../tree_1.8.0-1+b1_amd64.deb ...
17:54:16 Unpacking tree (1.8.0-1+b1) ...
17:54:16 Selecting previously unselected package pass.
17:54:16 Preparing to unpack .../archives/pass_1.7.3-2_all.deb ...
17:54:16 Unpacking pass (1.7.3-2) ...
17:54:17 Setting up gnupg2 (2.2.27-2+deb11u2) ...
17:54:17 Setting up tree (1.8.0-1+b1) ...
17:54:17 Setting up pass (1.7.3-2) ...
17:54:18 Removing intermediate container 8daced1b8e98
17:54:18  ---> 130f224ea2f2
17:54:18 Step 6/21 : COPY tests/ssh-keys /root/.ssh
17:54:18  ---> 460e855323ce
17:54:18 Step 7/21 : RUN chmod -R 600 /root/.ssh
17:54:18  ---> Running in f3d076a9b554
17:54:18 Removing intermediate container f3d076a9b554
17:54:18  ---> 4525dd052bdb
17:54:18 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
17:54:19  ---> f4614c7bd276
17:54:19 Step 9/21 : RUN gpg2 --import gpg-keys/secret
17:54:19  ---> Running in 5ebebc2586bb
17:54:19 gpg: directory '/root/.gnupg' created
17:54:19 gpg: keybox '/root/.gnupg/pubring.kbx' created
17:54:19 gpg: /root/.gnupg/trustdb.gpg: trustdb created
17:54:19 gpg: key 464ED987A7B21401: public key "Sakuya Izayoi <sakuya@gensokyo.jp>" imported
17:54:19 gpg: key 464ED987A7B21401: secret key imported
17:54:19 gpg: Total number processed: 1
17:54:19 gpg:               imported: 1
17:54:19 gpg:       secret keys read: 1
17:54:19 gpg:   secret keys imported: 1
17:54:20 Removing intermediate container 5ebebc2586bb
17:54:20  ---> ffabdc73f485
17:54:20 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
17:54:20  ---> Running in 84dea660ce65
17:54:20 gpg: inserting ownertrust of 6
17:54:20 Removing intermediate container 84dea660ce65
17:54:20  ---> 197ccdeeef03
17:54:20 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
17:54:20  ---> Running in 91bd63b64e34
17:54:20 gpg: please do a --check-trustdb
17:54:21 mkdir: created directory '/root/.password-store/'
17:54:21 Password store initialized for 9781B87DAB042E6FD51388A5464ED987A7B21401
17:54:21 Removing intermediate container 91bd63b64e34
17:54:21  ---> ff42b0fd19da
17:54:21 Step 12/21 : RUN gpg2 --check-trustdb
17:54:21  ---> Running in a1a4af916172
17:54:21 gpg: marginals needed: 3  completes needed: 1  trust model: pgp
17:54:21 gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
17:54:21 Removing intermediate container a1a4af916172
17:54:21  ---> 77f1c698a733
17:54:21 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
17:54:22  ---> Running in cbc8d8014c0f
17:54:22 Removing intermediate container cbc8d8014c0f
17:54:22  ---> d9bff974bb4f
17:54:22 Step 14/21 : 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
17:54:22  ---> Running in 00fbab24d36d
17:54:23 Removing intermediate container 00fbab24d36d
17:54:23  ---> 30f507ad8d83
17:54:23 Step 15/21 : WORKDIR /src
17:54:23  ---> Running in 27d5e20c7ea9
17:54:23 Removing intermediate container 27d5e20c7ea9
17:54:23  ---> fff92aae0a37
17:54:23 Step 16/21 : COPY requirements.txt /src/requirements.txt
17:54:23  ---> 625ee8e3c2e9
17:54:23 Step 17/21 : RUN pip install -r requirements.txt
17:54:23  ---> Running in 7b62cfc30e8a
17:54:25 Ignoring pywin32: markers 'sys_platform == "win32"' don't match your environment
17:54:29 Collecting appdirs==1.4.3
17:54:30   Downloading appdirs-1.4.3-py2.py3-none-any.whl (12 kB)
17:54:30 Collecting asn1crypto==0.22.0
17:54:30   Downloading asn1crypto-0.22.0-py2.py3-none-any.whl (97 kB)
17:54:30      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 97.9/97.9 KB 15.7 MB/s eta 0:00:00
17:54:30 Collecting backports.ssl-match-hostname==3.5.0.1
17:54:30   Downloading backports.ssl_match_hostname-3.5.0.1.tar.gz (5.6 kB)
17:54:30   Preparing metadata (setup.py): started
17:54:30   Preparing metadata (setup.py): finished with status 'done'
17:54:30 Collecting cffi==1.14.4
17:54:30   Downloading cffi-1.14.4-cp37-cp37m-manylinux1_x86_64.whl (402 kB)
17:54:31      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 402.3/402.3 KB 5.6 MB/s eta 0:00:00
17:54:31 Collecting cryptography==3.4.7
17:54:31   Downloading cryptography-3.4.7-cp36-abi3-manylinux2014_x86_64.whl (3.2 MB)
17:54:31      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 33.2 MB/s eta 0:00:00
17:54:31 Collecting enum34==1.1.6
17:54:31   Downloading enum34-1.1.6-py3-none-any.whl (12 kB)
17:54:31 Collecting idna==2.5
17:54:31   Downloading idna-2.5-py2.py3-none-any.whl (55 kB)
17:54:31      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 55.1/55.1 KB 12.8 MB/s eta 0:00:00
17:54:31 Collecting ipaddress==1.0.18
17:54:31   Downloading ipaddress-1.0.18.tar.gz (32 kB)
17:54:31   Preparing metadata (setup.py): started
17:54:31   Preparing metadata (setup.py): finished with status 'done'
17:54:31 Collecting packaging==16.8
17:54:31   Downloading packaging-16.8-py2.py3-none-any.whl (23 kB)
17:54:31 Collecting paramiko==2.10.1
17:54:31   Downloading paramiko-2.10.1-py2.py3-none-any.whl (211 kB)
17:54:31      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.9/211.9 KB 38.0 MB/s eta 0:00:00
17:54:31 Collecting pycparser==2.17
17:54:31   Downloading pycparser-2.17.tar.gz (231 kB)
17:54:31      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.2/231.2 KB 38.7 MB/s eta 0:00:00
17:54:31   Preparing metadata (setup.py): started
17:54:32   Preparing metadata (setup.py): finished with status 'done'
17:54:32 Collecting pyOpenSSL==18.0.0
17:54:32   Downloading pyOpenSSL-18.0.0-py2.py3-none-any.whl (53 kB)
17:54:32      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 53.1/53.1 KB 12.0 MB/s eta 0:00:00
17:54:32 Collecting pyparsing==2.2.0
17:54:32   Downloading pyparsing-2.2.0-py2.py3-none-any.whl (56 kB)
17:54:32      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.4/56.4 KB 8.8 MB/s eta 0:00:00
17:54:32 Collecting requests==2.26.0
17:54:32   Downloading requests-2.26.0-py2.py3-none-any.whl (62 kB)
17:54:32      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.3/62.3 KB 12.4 MB/s eta 0:00:00
17:54:32 Collecting urllib3==1.26.5
17:54:32   Downloading urllib3-1.26.5-py2.py3-none-any.whl (138 kB)
17:54:32      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 138.1/138.1 KB 4.1 MB/s eta 0:00:00
17:54:32 Collecting websocket-client==0.56.0
17:54:32   Downloading websocket_client-0.56.0-py2.py3-none-any.whl (200 kB)
17:54:32      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 200.6/200.6 KB 37.0 MB/s eta 0:00:00
17:54:32 Collecting six
17:54:32   Downloading six-1.16.0-py2.py3-none-any.whl (11 kB)
17:54:32 Collecting pynacl>=1.0.1
17:54:32   Downloading PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (856 kB)
17:54:32      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 856.7/856.7 KB 21.9 MB/s eta 0:00:00
17:54:32 Collecting bcrypt>=3.1.3
17:54:32   Downloading bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (62 kB)
17:54:32      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.3/62.3 KB 11.3 MB/s eta 0:00:00
17:54:32 Collecting charset-normalizer~=2.0.0
17:54:32   Downloading charset_normalizer-2.0.12-py3-none-any.whl (39 kB)
17:54:32 Collecting certifi>=2017.4.17
17:54:32   Downloading certifi-2022.6.15-py3-none-any.whl (160 kB)
17:54:32      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 160.2/160.2 KB 4.0 MB/s eta 0:00:00
17:54:32 Building wheels for collected packages: backports.ssl-match-hostname, ipaddress, pycparser
17:54:32   Building wheel for backports.ssl-match-hostname (setup.py): started
17:54:33   Building wheel for backports.ssl-match-hostname (setup.py): finished with status 'done'
17:54:33   Created wheel for backports.ssl-match-hostname: filename=backports.ssl_match_hostname-3.5.0.1-py3-none-any.whl size=5205 sha256=6b806d73b543e0e7c78f71d797ecfed5b4bc4fbcdce1bba660f78469f1a6872c
17:54:33   Stored in directory: /root/.cache/pip/wheels/93/72/f6/df894bfc7947d11f89dbdb4e9b786703a43cd547c1b5e8c738
17:54:33   Building wheel for ipaddress (setup.py): started
17:54:33   Building wheel for ipaddress (setup.py): finished with status 'done'
17:54:33   Created wheel for ipaddress: filename=ipaddress-1.0.18-py3-none-any.whl size=18124 sha256=61861866f216ab26569057ede99222304878a80af7ec5630a5e1e4d2c4b4ad99
17:54:33   Stored in directory: /root/.cache/pip/wheels/54/90/bd/f99e221ab77ef8e6d65c14efe986cef3360da2990396093151
17:54:33   Building wheel for pycparser (setup.py): started
17:54:33   Building wheel for pycparser (setup.py): finished with status 'done'
17:54:33   Created wheel for pycparser: filename=pycparser-2.17-py2.py3-none-any.whl size=192901 sha256=bae80910aabb226fd4191505c2c3402f386f49cb2e9042894ca9453b702e452b
17:54:33   Stored in directory: /root/.cache/pip/wheels/91/50/7a/9f94e39b01559aa44c3cefb775d7befcc01d0a6ed0093cab37
17:54:33 Successfully built backports.ssl-match-hostname ipaddress pycparser
17:54:33 Installing collected packages: pyparsing, pycparser, ipaddress, idna, enum34, backports.ssl-match-hostname, asn1crypto, appdirs, urllib3, six, charset-normalizer, cffi, certifi, websocket-client, requests, pynacl, packaging, cryptography, bcrypt, pyOpenSSL, paramiko
17:54:35 Successfully installed appdirs-1.4.3 asn1crypto-0.22.0 backports.ssl-match-hostname-3.5.0.1 bcrypt-3.2.2 certifi-2022.6.15 cffi-1.14.4 charset-normalizer-2.0.12 cryptography-3.4.7 enum34-1.1.6 idna-2.5 ipaddress-1.0.18 packaging-16.8 paramiko-2.10.1 pyOpenSSL-18.0.0 pycparser-2.17 pynacl-1.5.0 pyparsing-2.2.0 requests-2.26.0 six-1.16.0 urllib3-1.26.5 websocket-client-0.56.0
17:54:35 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
17:54:39 WARNING: You are using pip version 22.0.4; however, version 22.2 is available.
17:54:39 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
17:54:40 Removing intermediate container 7b62cfc30e8a
17:54:40  ---> 43f5bd75e6c4
17:54:40 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
17:54:40  ---> 044422a06d38
17:54:40 Step 19/21 : RUN pip install -r test-requirements.txt
17:54:40  ---> Running in 79e5eb3d4b41
17:54:46 Collecting setuptools==58.2.0
17:54:46   Downloading setuptools-58.2.0-py3-none-any.whl (946 kB)
17:54:46      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 946.1/946.1 KB 15.9 MB/s eta 0:00:00
17:54:47 Collecting coverage==6.0.1
17:54:47   Downloading coverage-6.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (252 kB)
17:54:47      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 252.9/252.9 KB 7.8 MB/s eta 0:00:00
17:54:47 Collecting flake8==4.0.1
17:54:47   Downloading flake8-4.0.1-py2.py3-none-any.whl (64 kB)
17:54:47      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.1/64.1 KB 16.1 MB/s eta 0:00:00
17:54:47 Collecting pytest==6.2.5
17:54:47   Downloading pytest-6.2.5-py3-none-any.whl (280 kB)
17:54:47      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 280.7/280.7 KB 49.7 MB/s eta 0:00:00
17:54:47 Collecting pytest-cov==3.0.0
17:54:47   Downloading pytest_cov-3.0.0-py3-none-any.whl (20 kB)
17:54:47 Collecting pytest-timeout==2.0.1
17:54:47   Downloading pytest_timeout-2.0.1-py3-none-any.whl (11 kB)
17:54:47 Collecting pycodestyle<2.9.0,>=2.8.0
17:54:47   Downloading pycodestyle-2.8.0-py2.py3-none-any.whl (42 kB)
17:54:47      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 KB 6.5 MB/s eta 0:00:00
17:54:47 Collecting pyflakes<2.5.0,>=2.4.0
17:54:47   Downloading pyflakes-2.4.0-py2.py3-none-any.whl (69 kB)
17:54:47      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 69.7/69.7 KB 8.4 MB/s eta 0:00:00
17:54:47 Collecting importlib-metadata<4.3
17:54:47   Downloading importlib_metadata-4.2.0-py3-none-any.whl (16 kB)
17:54:48 Collecting mccabe<0.7.0,>=0.6.0
17:54:48   Downloading mccabe-0.6.1-py2.py3-none-any.whl (8.6 kB)
17:54:48 Collecting attrs>=19.2.0
17:54:48   Downloading attrs-21.4.0-py2.py3-none-any.whl (60 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 60.6/60.6 KB 12.6 MB/s eta 0:00:00
17:54:48 Collecting iniconfig
17:54:48   Downloading iniconfig-1.1.1-py2.py3-none-any.whl (5.0 kB)
17:54:48 Requirement already satisfied: packaging in /usr/local/lib/python3.7/site-packages (from pytest==6.2.5->-r test-requirements.txt (line 4)) (16.8)
17:54:48 Collecting py>=1.8.2
17:54:48   Downloading py-1.11.0-py2.py3-none-any.whl (98 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 98.7/98.7 KB 21.9 MB/s eta 0:00:00
17:54:48 Collecting toml
17:54:48   Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB)
17:54:48 Collecting pluggy<2.0,>=0.12
17:54:48   Downloading pluggy-1.0.0-py2.py3-none-any.whl (13 kB)
17:54:48 Collecting coverage[toml]>=5.2.1
17:54:48   Downloading coverage-6.4.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (209 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 209.1/209.1 KB 33.7 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (208 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 209.0/209.0 KB 36.0 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (208 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 208.7/208.7 KB 39.7 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.3.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (207 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 208.0/208.0 KB 43.1 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (207 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 208.0/208.0 KB 36.4 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.3.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (207 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.4/207.4 KB 41.8 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (207 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.2/207.2 KB 39.1 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (213 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 213.9/213.9 KB 38.1 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (213 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 213.5/213.5 KB 39.7 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.1.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (213 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 213.4/213.4 KB 39.7 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (213 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 213.3/213.3 KB 37.8 MB/s eta 0:00:00
17:54:48   Downloading coverage-6.0.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (253 kB)
17:54:48      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 253.3/253.3 KB 44.8 MB/s eta 0:00:00
17:54:48 Collecting tomli
17:54:48   Downloading tomli-2.0.1-py3-none-any.whl (12 kB)
17:54:48 Collecting zipp>=0.5
17:54:48   Downloading zipp-3.8.1-py3-none-any.whl (5.6 kB)
17:54:48 Collecting typing-extensions>=3.6.4
17:54:48   Downloading typing_extensions-4.3.0-py3-none-any.whl (25 kB)
17:54:48 Requirement already satisfied: pyparsing in /usr/local/lib/python3.7/site-packages (from packaging->pytest==6.2.5->-r test-requirements.txt (line 4)) (2.2.0)
17:54:48 Requirement already satisfied: six in /usr/local/lib/python3.7/site-packages (from packaging->pytest==6.2.5->-r test-requirements.txt (line 4)) (1.16.0)
17:54:49 Installing collected packages: mccabe, iniconfig, zipp, typing-extensions, tomli, toml, setuptools, pyflakes, pycodestyle, py, coverage, attrs, importlib-metadata, pluggy, flake8, pytest, pytest-timeout, pytest-cov
17:54:49   Attempting uninstall: setuptools
17:54:49     Found existing installation: setuptools 57.5.0
17:54:49     Uninstalling setuptools-57.5.0:
17:54:49       Successfully uninstalled setuptools-57.5.0
17:54:50 Successfully installed attrs-21.4.0 coverage-6.0.1 flake8-4.0.1 importlib-metadata-4.2.0 iniconfig-1.1.1 mccabe-0.6.1 pluggy-1.0.0 py-1.11.0 pycodestyle-2.8.0 pyflakes-2.4.0 pytest-6.2.5 pytest-cov-3.0.0 pytest-timeout-2.0.1 setuptools-58.2.0 toml-0.10.2 tomli-2.0.1 typing-extensions-4.3.0 zipp-3.8.1
17:54:50 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
17:54:50 WARNING: You are using pip version 22.0.4; however, version 22.2 is available.
17:54:50 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
17:54:50 Removing intermediate container 79e5eb3d4b41
17:54:50  ---> 3d95bdc6abc9
17:54:50 Step 20/21 : COPY . /src
17:54:51  ---> 24eb1384ee9f
17:54:51 Step 21/21 : RUN pip install .
17:54:51  ---> Running in e0f4b7cfa029
17:54:51 Processing /src
17:54:51   Preparing metadata (setup.py): started
17:54:52   Preparing metadata (setup.py): finished with status 'done'
17:54:52 Requirement already satisfied: websocket-client>=0.32.0 in /usr/local/lib/python3.7/site-packages (from docker==5.1.0.dev0) (0.56.0)
17:54:52 Requirement already satisfied: requests!=2.18.0,>=2.14.2 in /usr/local/lib/python3.7/site-packages (from docker==5.1.0.dev0) (2.26.0)
17:54:52 Requirement already satisfied: urllib3<1.27,>=1.21.1 in /usr/local/lib/python3.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==5.1.0.dev0) (1.26.5)
17:54:52 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==5.1.0.dev0) (2022.6.15)
17:54:52 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==5.1.0.dev0) (2.5)
17:54:52 Requirement already satisfied: charset-normalizer~=2.0.0 in /usr/local/lib/python3.7/site-packages (from requests!=2.18.0,>=2.14.2->docker==5.1.0.dev0) (2.0.12)
17:54:52 Requirement already satisfied: six in /usr/local/lib/python3.7/site-packages (from websocket-client>=0.32.0->docker==5.1.0.dev0) (1.16.0)
17:54:52 Building wheels for collected packages: docker
17:54:52   Building wheel for docker (setup.py): started
17:54:52   Building wheel for docker (setup.py): finished with status 'done'
17:54:52   Created wheel for docker: filename=docker-5.1.0.dev0-py3-none-any.whl size=146316 sha256=6aca5bb4e3e7b4f9c0e37de1e39fe134077aba1d70d0222aecbab69c8c49feef
17:54:52   Stored in directory: /tmp/pip-ephem-wheel-cache-3qib_74c/wheels/6f/63/19/359cf44f647b75d0ea75ecc03aa429fec4c372b453eb4b6525
17:54:52 Successfully built docker
17:54:52 Installing collected packages: docker
17:54:52 Successfully installed docker-5.1.0.dev0
17:54:52 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
17:54:52 WARNING: You are using pip version 22.0.4; however, version 22.2 is available.
17:54:52 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
17:54:53 Removing intermediate container e0f4b7cfa029
17:54:53  ---> dc9cb4468174
17:54:53 Successfully built dc9cb4468174
17:54:53 Successfully tagged dockerpinata/docker-py:py3-f8b35bb63490e3b21d5dc8af960495b54dd8fc55