Skip to content

Console Output

22:22:49 + docker build -t dockerpinata/docker-py:py3-36c5bd86dd5bf17a6e5ffb2f82407b30b310ee11 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
22:22:49 Sending build context to Docker daemon  1.374MB

22:22:49 Step 1/21 : ARG PYTHON_VERSION=3.7
22:22:49 Step 2/21 : FROM python:${PYTHON_VERSION}
22:22:49  ---> 0b3f272343d3
22:22:49 Step 3/21 : ARG APT_MIRROR
22:22:49  ---> Using cache
22:22:49  ---> 19496620ab74
22:22:49 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:22:49  ---> Using cache
22:22:49  ---> e5377cd0c119
22:22:49 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
22:22:49  ---> Using cache
22:22:49  ---> 07ba3eca43a6
22:22:49 Step 6/21 : COPY tests/ssh-keys /root/.ssh
22:22:49  ---> Using cache
22:22:49  ---> 3642421e4e0c
22:22:49 Step 7/21 : RUN chmod -R 600 /root/.ssh
22:22:49  ---> Using cache
22:22:49  ---> 46c1ff672a36
22:22:50 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
22:22:50  ---> Using cache
22:22:50  ---> 7b450e4d2ac5
22:22:50 Step 9/21 : RUN gpg2 --import gpg-keys/secret
22:22:50  ---> Using cache
22:22:50  ---> 94467dbafa8e
22:22:50 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
22:22:50  ---> Using cache
22:22:50  ---> b58c0841384b
22:22:50 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
22:22:50  ---> Using cache
22:22:50  ---> abb92969084a
22:22:50 Step 12/21 : RUN gpg2 --check-trustdb
22:22:50  ---> Using cache
22:22:50  ---> 22919023a34e
22:22:50 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
22:22:50  ---> Using cache
22:22:50  ---> 556e56032566
22:22: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:22:50  ---> Using cache
22:22:50  ---> bedfe933b973
22:22:50 Step 15/21 : WORKDIR /src
22:22:50  ---> Using cache
22:22:50  ---> 81fbdb208169
22:22:50 Step 16/21 : COPY requirements.txt /src/requirements.txt
22:22:50  ---> Using cache
22:22:50  ---> 781a4498f0d3
22:22:50 Step 17/21 : RUN pip install -r requirements.txt
22:22:50  ---> Using cache
22:22:50  ---> 37c719a14802
22:22:50 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
22:22:50  ---> Using cache
22:22:50  ---> cb40d9e79c8d
22:22:50 Step 19/21 : RUN pip install -r test-requirements.txt
22:22:50  ---> Using cache
22:22:50  ---> 2252f27a2746
22:22:50 Step 20/21 : COPY . /src
22:22:50  ---> Using cache
22:22:50  ---> 5a9f05d9a433
22:22:50 Step 21/21 : RUN pip install .
22:22:50  ---> Using cache
22:22:50  ---> e9a41490f803
22:22:50 Successfully built e9a41490f803
22:22:50 Successfully tagged dockerpinata/docker-py:py3-36c5bd86dd5bf17a6e5ffb2f82407b30b310ee11