Skip to content

Console Output

14:40:50 + docker build -t dockerpinata/docker-py:py3-c5fc19385765b2724285689a94c408cfd486f210 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
14:40:50 Sending build context to Docker daemon  1.369MB

14:40:50 Step 1/21 : ARG PYTHON_VERSION=3.7
14:40:50 Step 2/21 : FROM python:${PYTHON_VERSION}
14:40:50  ---> af86b73e120c
14:40:50 Step 3/21 : ARG APT_MIRROR
14:40:50  ---> Using cache
14:40:50  ---> 0514863ee99b
14:40:50 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
14:40:50  ---> Using cache
14:40:50  ---> 7e28b762645a
14:40:50 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
14:40:50  ---> Using cache
14:40:50  ---> 99c87564acb1
14:40:50 Step 6/21 : COPY tests/ssh-keys /root/.ssh
14:40:50  ---> Using cache
14:40:50  ---> 020c21d67ebd
14:40:50 Step 7/21 : RUN chmod -R 600 /root/.ssh
14:40:50  ---> Using cache
14:40:50  ---> ff283efa2032
14:40:50 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
14:40:50  ---> Using cache
14:40:50  ---> 4f929bf3e0a7
14:40:50 Step 9/21 : RUN gpg2 --import gpg-keys/secret
14:40:50  ---> Using cache
14:40:50  ---> 33294fb6c663
14:40:50 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
14:40:50  ---> Using cache
14:40:50  ---> 105d908da493
14:40:50 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
14:40:50  ---> Using cache
14:40:50  ---> b82788e3d59e
14:40:50 Step 12/21 : RUN gpg2 --check-trustdb
14:40:50  ---> Using cache
14:40:50  ---> 3f02ed21aeac
14:40:50 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
14:40:50  ---> Using cache
14:40:50  ---> cfab5972472e
14:40:50 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
14:40:50  ---> Using cache
14:40:50  ---> 762cb94b145f
14:40:50 Step 15/21 : WORKDIR /src
14:40:50  ---> Using cache
14:40:50  ---> 7795f5ae3cff
14:40:50 Step 16/21 : COPY requirements.txt /src/requirements.txt
14:40:50  ---> Using cache
14:40:50  ---> 3ed132a535b5
14:40:50 Step 17/21 : RUN pip install -r requirements.txt
14:40:50  ---> Using cache
14:40:50  ---> f937a8cbccb6
14:40:50 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
14:40:50  ---> Using cache
14:40:50  ---> 2c68b3788481
14:40:50 Step 19/21 : RUN pip install -r test-requirements.txt
14:40:50  ---> Using cache
14:40:50  ---> c1f7c2aa3114
14:40:50 Step 20/21 : COPY . /src
14:40:51  ---> 24def2570928
14:40:51 Step 21/21 : RUN pip install .
14:40:51  ---> Running in 92dcb147dd2a
14:40:51 Processing /src
14:40:51   DEPRECATION: A future pip version will change local packages to be built in-place without first copying to a temporary directory. We recommend you use --use-feature=in-tree-build to test your packages with this new behavior before it becomes the default.
14:40:51    pip 21.3 will remove support for this functionality. You can find discussion regarding this at https://github.com/pypa/pip/issues/7555.
14:40:51 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)
14:40:51 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)
14:40:51 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) (2021.5.30)
14:40:51 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)
14:40:51 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)
14:40:51 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.4)
14:40:51 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)
14:40:51 Building wheels for collected packages: docker
14:40:51   Building wheel for docker (setup.py): started
14:40:52   Building wheel for docker (setup.py): finished with status 'done'
14:40:52   Created wheel for docker: filename=docker-5.1.0.dev0-py2.py3-none-any.whl size=146050 sha256=25d08c78d8f92b2bcd6e60840f225f01df58a4ec813ef5045d596eaadd60ece9
14:40:52   Stored in directory: /tmp/pip-ephem-wheel-cache-luy1cyts/wheels/6f/63/19/359cf44f647b75d0ea75ecc03aa429fec4c372b453eb4b6525
14:40:52 Successfully built docker
14:40:52 Installing collected packages: docker
14:40:52 Successfully installed docker-5.1.0.dev0
14:40: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
14:40:53 Removing intermediate container 92dcb147dd2a
14:40:53  ---> 3c2eac2772c8
14:40:53 Successfully built 3c2eac2772c8
14:40:53 Successfully tagged dockerpinata/docker-py:py3-c5fc19385765b2724285689a94c408cfd486f210