Skip to content

Console Output

12:42:26 + docker build -t dockerpinata/docker-py:py3-d58ca9720725219fd25a4145b8b5adbe1ed2ebc5 -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 .
12:42:26 Sending build context to Docker daemon  1.373MB

12:42:26 Step 1/21 : ARG PYTHON_VERSION=3.7
12:42:26 Step 2/21 : FROM python:${PYTHON_VERSION}
12:42:26  ---> 9b5e75b69a4f
12:42:26 Step 3/21 : ARG APT_MIRROR
12:42:26  ---> Using cache
12:42:26  ---> 59f45635a9d0
12:42:26 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
12:42:26  ---> Using cache
12:42:26  ---> ef088748436f
12:42:26 Step 5/21 : RUN apt-get update && apt-get -y install --no-install-recommends     gnupg2     pass
12:42:26  ---> Using cache
12:42:26  ---> dd2eb0c320d2
12:42:26 Step 6/21 : COPY tests/ssh-keys /root/.ssh
12:42:26  ---> Using cache
12:42:26  ---> 4d988ed1284e
12:42:26 Step 7/21 : RUN chmod -R 600 /root/.ssh
12:42:26  ---> Using cache
12:42:26  ---> 9670018f3f85
12:42:26 Step 8/21 : COPY ./tests/gpg-keys /gpg-keys
12:42:26  ---> Using cache
12:42:26  ---> 77689007a5bd
12:42:26 Step 9/21 : RUN gpg2 --import gpg-keys/secret
12:42:26  ---> Using cache
12:42:26  ---> 6eb0f97d63c8
12:42:26 Step 10/21 : RUN gpg2 --import-ownertrust gpg-keys/ownertrust
12:42:26  ---> Using cache
12:42:26  ---> cc4b5b33bd0f
12:42:26 Step 11/21 : RUN yes | pass init $(gpg2 --no-auto-check-trustdb --list-secret-key | awk '/^sec/{getline; $1=$1; print}')
12:42:26  ---> Using cache
12:42:26  ---> 2d4c87a8d60f
12:42:26 Step 12/21 : RUN gpg2 --check-trustdb
12:42:26  ---> Using cache
12:42:26  ---> 98499b427996
12:42:26 Step 13/21 : ARG CREDSTORE_VERSION=v0.6.3
12:42:26  ---> Using cache
12:42:26  ---> 29f0ca4a6be4
12:42:26 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
12:42:26  ---> Using cache
12:42:26  ---> c3f6248a6383
12:42:26 Step 15/21 : WORKDIR /src
12:42:26  ---> Using cache
12:42:26  ---> 0a686f77b046
12:42:26 Step 16/21 : COPY requirements.txt /src/requirements.txt
12:42:26  ---> Using cache
12:42:26  ---> 4fa7d223af59
12:42:26 Step 17/21 : RUN pip install -r requirements.txt
12:42:26  ---> Using cache
12:42:26  ---> b6868826549f
12:42:26 Step 18/21 : COPY test-requirements.txt /src/test-requirements.txt
12:42:26  ---> Using cache
12:42:26  ---> ba36fc8752f9
12:42:26 Step 19/21 : RUN pip install -r test-requirements.txt
12:42:26  ---> Using cache
12:42:26  ---> eb8b877207b3
12:42:26 Step 20/21 : COPY . /src
12:42:26  ---> Using cache
12:42:26  ---> 1d5b92036426
12:42:26 Step 21/21 : RUN pip install .
12:42:26  ---> Using cache
12:42:26  ---> 039e4193414a
12:42:26 Successfully built 039e4193414a
12:42:26 Successfully tagged dockerpinata/docker-py:py3-d58ca9720725219fd25a4145b8b5adbe1ed2ebc5