Skip to content

Console Output

17:24:50 + docker build -t dockerpinata/docker-py:py3-a9265197d262302d34846e26886347f68c83bb5d -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
17:24:50 Sending build context to Docker daemon   1.37MB

17:24:50 Step 1/21 : ARG PYTHON_VERSION=3.7
17:24:50 Step 2/21 : FROM python:${PYTHON_VERSION}
17:24:50  ---> af86b73e120c
17:24:50 Step 3/21 : ARG APT_MIRROR
17:24:50  ---> Using cache
17:24:50  ---> e073eb1d8d66
17:24: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
17:24:50  ---> Using cache
17:24:50  ---> b9cf4e7d9a3c
17:24:50 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
17:24:50  ---> Using cache
17:24:50  ---> 12c0869822f8
17:24:50 Step 6/21 : COPY tests/ssh-keys /root/.ssh
17:24:50  ---> Using cache
17:24:50  ---> 75467ab2d5cd
17:24:50 Step 7/21 : RUN chmod -R 600 /root/.ssh
17:24:50  ---> Using cache
17:24:50  ---> b02ebc9187d5
17:24:50 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
17:24:50  ---> Using cache
17:24:50  ---> dd3dd1c759ae
17:24:50 Step 9/21 : RUN gpg2 --import gpg-keys/secret
17:24:50  ---> Using cache
17:24:50  ---> 44141c8817fd
17:24:50 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
17:24:50  ---> Using cache
17:24:50  ---> a7c190093098
17:24:50 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
17:24:50  ---> Using cache
17:24:50  ---> 601854bed569
17:24:50 Step 12/21 : RUN gpg2 --check-trustdb
17:24:50  ---> Using cache
17:24:50  ---> b12e2bd9eda2
17:24:50 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
17:24:50  ---> Using cache
17:24:50  ---> 80b45e1603ec
17:24: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
17:24:50  ---> Using cache
17:24:50  ---> a695a1eb9d6c
17:24:50 Step 15/21 : WORKDIR /src
17:24:50  ---> Using cache
17:24:50  ---> 17322245c76d
17:24:50 Step 16/21 : COPY requirements.txt /src/requirements.txt
17:24:50  ---> Using cache
17:24:50  ---> 11c243833cd9
17:24:50 Step 17/21 : RUN pip install -r requirements.txt
17:24:50  ---> Using cache
17:24:50  ---> f11d73640903
17:24:50 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
17:24:50  ---> Using cache
17:24:50  ---> 8fe72c0d9917
17:24:50 Step 19/21 : RUN pip install -r test-requirements.txt
17:24:50  ---> Using cache
17:24:50  ---> 0ab8f91f7885
17:24:50 Step 20/21 : COPY . /src
17:24:51  ---> b1e25afc68a6
17:24:51 Step 21/21 : RUN pip install .
17:24:51  ---> Running in 4e642d7a42c6
17:24:52 Processing /src
17:24:52   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.
17:24:52    pip 21.3 will remove support for this functionality. You can find discussion regarding this at https://github.com/pypa/pip/issues/7555.
17:24: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:24: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:24: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:24: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.4)
17:24: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:24: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) (2021.5.30)
17:24: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:24:52 Building wheels for collected packages: docker
17:24:52   Building wheel for docker (setup.py): started
17:24:52   Building wheel for docker (setup.py): finished with status 'done'
17:24:52   Created wheel for docker: filename=docker-5.1.0.dev0-py2.py3-none-any.whl size=146032 sha256=8a723ac539134b172ccb788d56aca058d31ebd445355069182f3cb61dc1e47f3
17:24:52   Stored in directory: /tmp/pip-ephem-wheel-cache-6_xuo3k7/wheels/6f/63/19/359cf44f647b75d0ea75ecc03aa429fec4c372b453eb4b6525
17:24:52 Successfully built docker
17:24:52 Installing collected packages: docker
17:24:52 Successfully installed docker-5.1.0.dev0
17:24: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:24:53 Removing intermediate container 4e642d7a42c6
17:24:53  ---> 1c4e21fcea3f
17:24:53 Successfully built 1c4e21fcea3f
17:24:53 Successfully tagged dockerpinata/docker-py:py3-a9265197d262302d34846e26886347f68c83bb5d