Skip to content

Console Output

14:23:59 + docker build -t dockerpinata/docker-py:py3-0a016ff523d4810f5d6ad25535321effb95a95e2 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
14:23:59 Sending build context to Docker daemon  1.369MB

14:23:59 Step 1/21 : ARG PYTHON_VERSION=3.7
14:23:59 Step 2/21 : FROM python:${PYTHON_VERSION}
14:23:59  ---> af86b73e120c
14:23:59 Step 3/21 : ARG APT_MIRROR
14:23:59  ---> Using cache
14:23:59  ---> 0514863ee99b
14:23:59 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:23:59  ---> Using cache
14:23:59  ---> 7e28b762645a
14:23:59 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
14:23:59  ---> Using cache
14:23:59  ---> 99c87564acb1
14:23:59 Step 6/21 : COPY tests/ssh-keys /root/.ssh
14:23:59  ---> Using cache
14:23:59  ---> 020c21d67ebd
14:23:59 Step 7/21 : RUN chmod -R 600 /root/.ssh
14:23:59  ---> Using cache
14:23:59  ---> ff283efa2032
14:23:59 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
14:23:59  ---> Using cache
14:23:59  ---> 4f929bf3e0a7
14:23:59 Step 9/21 : RUN gpg2 --import gpg-keys/secret
14:23:59  ---> Using cache
14:23:59  ---> 33294fb6c663
14:23:59 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
14:23:59  ---> Using cache
14:23:59  ---> 105d908da493
14:23:59 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
14:23:59  ---> Using cache
14:23:59  ---> b82788e3d59e
14:23:59 Step 12/21 : RUN gpg2 --check-trustdb
14:23:59  ---> Using cache
14:23:59  ---> 3f02ed21aeac
14:23:59 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
14:23:59  ---> Using cache
14:23:59  ---> cfab5972472e
14:23:59 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:23:59  ---> Using cache
14:23:59  ---> 762cb94b145f
14:23:59 Step 15/21 : WORKDIR /src
14:23:59  ---> Using cache
14:23:59  ---> 7795f5ae3cff
14:23:59 Step 16/21 : COPY requirements.txt /src/requirements.txt
14:23:59  ---> Using cache
14:23:59  ---> 3ed132a535b5
14:23:59 Step 17/21 : RUN pip install -r requirements.txt
14:23:59  ---> Using cache
14:23:59  ---> f937a8cbccb6
14:23:59 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
14:23:59  ---> Using cache
14:23:59  ---> 2c68b3788481
14:23:59 Step 19/21 : RUN pip install -r test-requirements.txt
14:23:59  ---> Using cache
14:23:59  ---> c1f7c2aa3114
14:23:59 Step 20/21 : COPY . /src
14:24:00  ---> 7111f6315f7a
14:24:00 Step 21/21 : RUN pip install .
14:24:00  ---> Running in b194dee89aa2
14:24:01 Processing /src
14:24:01   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:24:01    pip 21.3 will remove support for this functionality. You can find discussion regarding this at https://github.com/pypa/pip/issues/7555.
14:24:01 Requirement already satisfied: websocket-client>=0.32.0 in /usr/local/lib/python3.7/site-packages (from docker==5.0.1) (0.56.0)
14:24:01 Requirement already satisfied: requests!=2.18.0,>=2.14.2 in /usr/local/lib/python3.7/site-packages (from docker==5.0.1) (2.26.0)
14:24:01 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.0.1) (2.0.4)
14:24:01 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.0.1) (2021.5.30)
14:24:01 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.0.1) (2.5)
14:24:01 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.0.1) (1.26.5)
14:24:01 Requirement already satisfied: six in /usr/local/lib/python3.7/site-packages (from websocket-client>=0.32.0->docker==5.0.1) (1.16.0)
14:24:01 Building wheels for collected packages: docker
14:24:01   Building wheel for docker (setup.py): started
14:24:01   Building wheel for docker (setup.py): finished with status 'done'
14:24:01   Created wheel for docker: filename=docker-5.0.1-py2.py3-none-any.whl size=145986 sha256=5939b7a2e92e299e582f78f572c6a0f0dc8f204a8317c73953aeff54db142a2a
14:24:01   Stored in directory: /tmp/pip-ephem-wheel-cache-44fk07nn/wheels/6f/63/19/359cf44f647b75d0ea75ecc03aa429fec4c372b453eb4b6525
14:24:01 Successfully built docker
14:24:01 Installing collected packages: docker
14:24:01 Successfully installed docker-5.0.1
14:24: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
14:24:02 Removing intermediate container b194dee89aa2
14:24:02  ---> a93cddc413a6
14:24:02 Successfully built a93cddc413a6
14:24:02 Successfully tagged dockerpinata/docker-py:py3-0a016ff523d4810f5d6ad25535321effb95a95e2