Skip to content

Console Output

06:53:43 + docker build -t dockerpinata/docker-py:py3-2c0359a3970cc2305c1141b30021e5b1cae26a07 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
06:53:43 Sending build context to Docker daemon  1.375MB

06:53:43 Step 1/21 : ARG PYTHON_VERSION=3.7
06:53:43 Step 2/21 : FROM python:${PYTHON_VERSION}
06:53:43  ---> dbd6ecf8172a
06:53:43 Step 3/21 : ARG APT_MIRROR
06:53:43  ---> Using cache
06:53:43  ---> 1a51478d646a
06:53:43 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
06:53:43  ---> Using cache
06:53:43  ---> cfa92f9534ac
06:53:43 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
06:53:43  ---> Using cache
06:53:43  ---> e9ba8119747b
06:53:43 Step 6/21 : COPY tests/ssh-keys /root/.ssh
06:53:43  ---> Using cache
06:53:43  ---> 29570defd2c4
06:53:43 Step 7/21 : RUN chmod -R 600 /root/.ssh
06:53:43  ---> Using cache
06:53:43  ---> 00f4c58281c3
06:53:43 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
06:53:43  ---> Using cache
06:53:43  ---> 9d8562f609b5
06:53:43 Step 9/21 : RUN gpg2 --import gpg-keys/secret
06:53:43  ---> Using cache
06:53:43  ---> 654aa6847ee2
06:53:43 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
06:53:43  ---> Using cache
06:53:43  ---> 2d6e61b65cf0
06:53:43 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
06:53:43  ---> Using cache
06:53:43  ---> 1403525727a5
06:53:43 Step 12/21 : RUN gpg2 --check-trustdb
06:53:43  ---> Using cache
06:53:43  ---> 1ce405965c6e
06:53:43 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
06:53:43  ---> Using cache
06:53:43  ---> 093f6524dc0c
06:53:43 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
06:53:43  ---> Using cache
06:53:43  ---> c0d0d712a35c
06:53:43 Step 15/21 : WORKDIR /src
06:53:43  ---> Using cache
06:53:43  ---> 8d81fedf4c53
06:53:43 Step 16/21 : COPY requirements.txt /src/requirements.txt
06:53:43  ---> Using cache
06:53:43  ---> e70565aa3551
06:53:43 Step 17/21 : RUN pip install -r requirements.txt
06:53:43  ---> Using cache
06:53:43  ---> 1824f3806063
06:53:43 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
06:53:43  ---> Using cache
06:53:43  ---> 1dafee1a1451
06:53:43 Step 19/21 : RUN pip install -r test-requirements.txt
06:53:43  ---> Using cache
06:53:43  ---> 257225b82344
06:53:43 Step 20/21 : COPY . /src
06:53:43  ---> 7ffaeadeebe2
06:53:43 Step 21/21 : RUN pip install .
06:53:43  ---> Running in 433b6721800d
06:53:44 Processing /src
06:53:44   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.
06:53:44    pip 21.3 will remove support for this functionality. You can find discussion regarding this at https://github.com/pypa/pip/issues/7555.
06:53:44 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)
06:53:44 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)
06:53:44 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)
06:53:44 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)
06:53:44 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.10.8)
06:53:44 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)
06:53:44 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)
06:53:44 Building wheels for collected packages: docker
06:53:44   Building wheel for docker (setup.py): started
06:53:44   Building wheel for docker (setup.py): finished with status 'done'
06:53:44   Created wheel for docker: filename=docker-5.1.0.dev0-py3-none-any.whl size=146357 sha256=07f3fafd20bed9f59d4d548add8587f7f08e03aab05c55bc9e501e05df7318eb
06:53:44   Stored in directory: /tmp/pip-ephem-wheel-cache-vw6279bm/wheels/6f/63/19/359cf44f647b75d0ea75ecc03aa429fec4c372b453eb4b6525
06:53:44 Successfully built docker
06:53:44 Installing collected packages: docker
06:53:44 Successfully installed docker-5.1.0.dev0
06:53: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
06:53:44 WARNING: You are using pip version 21.2.4; however, version 22.0.3 is available.
06:53:44 You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
06:53:45 Removing intermediate container 433b6721800d
06:53:45  ---> 85ff4d2c1635
06:53:45 Successfully built 85ff4d2c1635
06:53:45 Successfully tagged dockerpinata/docker-py:py3-2c0359a3970cc2305c1141b30021e5b1cae26a07