Skip to content

Console Output

22:45:50 + docker build -t dockerpinata/docker-py:py3-3686248bac901113dc9ed979aed98430fae69d84 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
22:45:50 Sending build context to Docker daemon  1.375MB

22:45:50 Step 1/21 : ARG PYTHON_VERSION=3.7
22:45:50 Step 2/21 : FROM python:${PYTHON_VERSION}
22:45:50  ---> 58c144612af4
22:45:50 Step 3/21 : ARG APT_MIRROR
22:45:50  ---> Using cache
22:45:50  ---> 94dd0db6aef8
22:45: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
22:45:50  ---> Using cache
22:45:50  ---> 481064d6139b
22:45:50 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
22:45:50  ---> Using cache
22:45:50  ---> e53b4fad0578
22:45:50 Step 6/21 : COPY tests/ssh-keys /root/.ssh
22:45:50  ---> Using cache
22:45:50  ---> ff8531421c0f
22:45:50 Step 7/21 : RUN chmod -R 600 /root/.ssh
22:45:50  ---> Using cache
22:45:50  ---> 32b8a38a3a79
22:45:50 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
22:45:50  ---> Using cache
22:45:50  ---> 56de950d7a8f
22:45:50 Step 9/21 : RUN gpg2 --import gpg-keys/secret
22:45:50  ---> Using cache
22:45:50  ---> 37bfffbaea3f
22:45:50 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
22:45:50  ---> Using cache
22:45:50  ---> 2e4eebaf4b0d
22:45:50 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
22:45:50  ---> Using cache
22:45:50  ---> 58f649ff6b6f
22:45:50 Step 12/21 : RUN gpg2 --check-trustdb
22:45:50  ---> Using cache
22:45:50  ---> 26e0bc668678
22:45:50 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
22:45:50  ---> Using cache
22:45:50  ---> ef254642f12f
22:45: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
22:45:50  ---> Using cache
22:45:50  ---> f854970cb12c
22:45:50 Step 15/21 : WORKDIR /src
22:45:50  ---> Using cache
22:45:50  ---> 9649d72dbe0f
22:45:50 Step 16/21 : COPY requirements.txt /src/requirements.txt
22:45:50  ---> Using cache
22:45:50  ---> 890ffc596f79
22:45:50 Step 17/21 : RUN pip install -r requirements.txt
22:45:50  ---> Using cache
22:45:50  ---> 0742ceeeb418
22:45:50 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
22:45:50  ---> Using cache
22:45:50  ---> 80f9ea21adbc
22:45:50 Step 19/21 : RUN pip install -r test-requirements.txt
22:45:50  ---> Using cache
22:45:50  ---> b5068bb1cfdf
22:45:50 Step 20/21 : COPY . /src
22:45:50  ---> bb6b524b00bf
22:45:50 Step 21/21 : RUN pip install .
22:45:50  ---> Running in 440bc6e5d241
22:45:51 Processing /src
22:45: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.
22:45:51    pip 21.3 will remove support for this functionality. You can find discussion regarding this at https://github.com/pypa/pip/issues/7555.
22:45:52 Requirement already satisfied: websocket-client>=0.32.0 in /usr/local/lib/python3.7/site-packages (from docker==5.0.3) (0.56.0)
22:45:52 Requirement already satisfied: requests!=2.18.0,>=2.14.2 in /usr/local/lib/python3.7/site-packages (from docker==5.0.3) (2.26.0)
22:45: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.0.3) (2.0.6)
22:45: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.0.3) (2021.5.30)
22:45: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.0.3) (2.5)
22:45: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.0.3) (1.26.5)
22:45:52 Requirement already satisfied: six in /usr/local/lib/python3.7/site-packages (from websocket-client>=0.32.0->docker==5.0.3) (1.16.0)
22:45:52 Building wheels for collected packages: docker
22:45:52   Building wheel for docker (setup.py): started
22:45:52   Building wheel for docker (setup.py): finished with status 'done'
22:45:52   Created wheel for docker: filename=docker-5.0.3-py2.py3-none-any.whl size=146235 sha256=849ee6c4dda51ccd870904a6750fdeac7cd1d234cf23e146d9fdccb2d83a71f6
22:45:52   Stored in directory: /tmp/pip-ephem-wheel-cache-p_3mq9g0/wheels/6f/63/19/359cf44f647b75d0ea75ecc03aa429fec4c372b453eb4b6525
22:45:52 Successfully built docker
22:45:52 Installing collected packages: docker
22:45:52 Successfully installed docker-5.0.3
22:45: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
22:45:53 Removing intermediate container 440bc6e5d241
22:45:53  ---> 6bc2b3b3a49e
22:45:53 Successfully built 6bc2b3b3a49e
22:45:53 Successfully tagged dockerpinata/docker-py:py3-3686248bac901113dc9ed979aed98430fae69d84