Skip to content

Console Output

20:33:42 + docker build -t dockerpinata/docker-py:py3-0ee9f260e48992d04d72c7bb8e4819f6b6a64717 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
20:33:42 Sending build context to Docker daemon  1.376MB

20:33:42 Step 1/21 : ARG PYTHON_VERSION=3.7
20:33:42 Step 2/21 : FROM python:${PYTHON_VERSION}
20:33:42  ---> 142b92ebe662
20:33:42 Step 3/21 : ARG APT_MIRROR
20:33:42  ---> Using cache
20:33:42  ---> 10f9bc954f0c
20:33:42 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
20:33:42  ---> Using cache
20:33:42  ---> b34d6130e70e
20:33:42 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
20:33:42  ---> Using cache
20:33:42  ---> 1bcd81653371
20:33:42 Step 6/21 : COPY tests/ssh-keys /root/.ssh
20:33:42  ---> Using cache
20:33:42  ---> d6529f20e48d
20:33:42 Step 7/21 : RUN chmod -R 600 /root/.ssh
20:33:42  ---> Using cache
20:33:42  ---> b627ef445b94
20:33:42 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
20:33:42  ---> Using cache
20:33:42  ---> 7f844a0c3ffa
20:33:42 Step 9/21 : RUN gpg2 --import gpg-keys/secret
20:33:42  ---> Using cache
20:33:42  ---> cf5d988ea543
20:33:42 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
20:33:42  ---> Using cache
20:33:42  ---> ec5f474c6560
20:33:42 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
20:33:42  ---> Using cache
20:33:42  ---> f66829a7663b
20:33:42 Step 12/21 : RUN gpg2 --check-trustdb
20:33:42  ---> Using cache
20:33:42  ---> a8a94fc4e476
20:33:42 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
20:33:42  ---> Using cache
20:33:42  ---> e70311c8a202
20:33:42 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
20:33:42  ---> Using cache
20:33:42  ---> d57f45dc5bd1
20:33:42 Step 15/21 : WORKDIR /src
20:33:42  ---> Using cache
20:33:42  ---> 2823901bd0d7
20:33:42 Step 16/21 : COPY requirements.txt /src/requirements.txt
20:33:42  ---> Using cache
20:33:42  ---> c7fe2f5a9efa
20:33:42 Step 17/21 : RUN pip install -r requirements.txt
20:33:42  ---> Using cache
20:33:42  ---> 88004a77d8af
20:33:42 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
20:33:42  ---> Using cache
20:33:42  ---> a01ee33d3429
20:33:42 Step 19/21 : RUN pip install -r test-requirements.txt
20:33:42  ---> Using cache
20:33:42  ---> 6cbaf462cfe0
20:33:42 Step 20/21 : COPY . /src
20:33:42  ---> 9d78e8678aa7
20:33:42 Step 21/21 : RUN pip install .
20:33:42  ---> Running in c43f45616625
20:33:43 Processing /src
20:33:43   Preparing metadata (setup.py): started
20:33:43   Preparing metadata (setup.py): finished with status 'done'
20:33:43 Requirement already satisfied: packaging in /usr/local/lib/python3.7/site-packages (from docker==5.1.0.dev0) (21.3)
20:33:43 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)
20:33:43 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)
20:33:43 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)
20:33:43 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)
20:33:43 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)
20:33:43 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)
20:33:43 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)
20:33:43 Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/local/lib/python3.7/site-packages (from packaging->docker==5.1.0.dev0) (2.2.0)
20:33:43 Building wheels for collected packages: docker
20:33:43   Building wheel for docker (setup.py): started
20:33:44   Building wheel for docker (setup.py): finished with status 'done'
20:33:44   Created wheel for docker: filename=docker-5.1.0.dev0-py3-none-any.whl size=145947 sha256=0b2c7c86c7937d0548ca51a50c4399fb8cbef897737b6cc1a9583f298c04f625
20:33:44   Stored in directory: /tmp/pip-ephem-wheel-cache-rsh_01o0/wheels/6f/63/19/359cf44f647b75d0ea75ecc03aa429fec4c372b453eb4b6525
20:33:44 Successfully built docker
20:33:44 Installing collected packages: docker
20:33:44 Successfully installed docker-5.1.0.dev0
20:33:44 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:33:44 WARNING: You are using pip version 22.0.4; however, version 22.2 is available.
20:33:44 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
20:33:44 Removing intermediate container c43f45616625
20:33:44  ---> dd0f7ad265de
20:33:44 Successfully built dd0f7ad265de
20:33:44 Successfully tagged dockerpinata/docker-py:py3-0ee9f260e48992d04d72c7bb8e4819f6b6a64717