Skip to content

Console Output

17:37:22 [2020-03-30T17:37:22.961Z] + docker build --force-rm --build-arg APT_MIRROR -t docker:359edd8cbf9c3ca98e34d319bc3ff015f2bafbf0 .
17:37:23 [2020-03-30T17:37:23.731Z] Sending build context to Docker daemon  52.69MB

17:37:23 [2020-03-30T17:37:23.731Z] Step 1/140 : ARG CROSS="false"
17:37:23 [2020-03-30T17:37:23.731Z] Step 2/140 : ARG GO_VERSION=1.12.17
17:37:23 [2020-03-30T17:37:23.731Z] Step 3/140 : ARG DEBIAN_FRONTEND=noninteractive
17:37:23 [2020-03-30T17:37:23.731Z] Step 4/140 : ARG VPNKIT_DIGEST=e508a17cfacc8fd39261d5b4e397df2b953690da577e2c987a47630cd0c42f8e
17:37:23 [2020-03-30T17:37:23.731Z] Step 5/140 : FROM golang:${GO_VERSION}-buster AS base
17:37:23 [2020-03-30T17:37:23.731Z]  ---> 24b6a4b65d10
17:37:23 [2020-03-30T17:37:23.731Z] Step 6/140 : ARG APT_MIRROR
17:37:23 [2020-03-30T17:37:23.731Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.731Z]  ---> 5e777a37768c
17:37:23 [2020-03-30T17:37:23.731Z] Step 7/140 : 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:37:23 [2020-03-30T17:37:23.731Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.731Z]  ---> 40e3540baf78
17:37:23 [2020-03-30T17:37:23.731Z] Step 8/140 : ENV GO111MODULE=off
17:37:23 [2020-03-30T17:37:23.731Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.731Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.731Z] Step 9/140 : FROM base AS criu
17:37:23 [2020-03-30T17:37:23.731Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.731Z] Step 10/140 : ARG DEBIAN_FRONTEND
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 7ff7bc7fc864
17:37:23 [2020-03-30T17:37:23.732Z] Step 11/140 : RUN apt-get update && apt-get install -y --no-install-recommends         libcap-dev         libnet-dev         libnl-3-dev         libprotobuf-c-dev         libprotobuf-dev         protobuf-c-compiler         protobuf-compiler         python-protobuf     && rm -rf /var/lib/apt/lists/*
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 07cd5d8e43e8
17:37:23 [2020-03-30T17:37:23.732Z] Step 12/140 : ENV CRIU_VERSION 3.12
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> b061527a8862
17:37:23 [2020-03-30T17:37:23.732Z] Step 13/140 : RUN mkdir -p /usr/src/criu     && curl -sSL https://github.com/checkpoint-restore/criu/archive/v${CRIU_VERSION}.tar.gz | tar -C /usr/src/criu/ -xz --strip-components=1     && cd /usr/src/criu     && make     && make PREFIX=/build/ install-criu
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 07c5e0aec3cf
17:37:23 [2020-03-30T17:37:23.732Z] Step 14/140 : FROM base AS registry
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.732Z] Step 15/140 : ENV REGISTRY_COMMIT_SCHEMA1 ec87e9b6971d831f0eff752ddb54fb64693e51cd
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> c493b52f5032
17:37:23 [2020-03-30T17:37:23.732Z] Step 16/140 : ENV REGISTRY_COMMIT 47a064d4195a9b56133891bbb13620c3ac83a827
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> d41815a705fe
17:37:23 [2020-03-30T17:37:23.732Z] Step 17/140 : RUN set -x     && export GOPATH="$(mktemp -d)"     && git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution"     && (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT")     && GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH"         go build -buildmode=pie -o /build/registry-v2 github.com/docker/distribution/cmd/registry     && case $(dpkg --print-architecture) in         amd64|ppc64*|s390x)         (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT_SCHEMA1");         GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH";             go build -buildmode=pie -o /build/registry-v2-schema1 github.com/docker/distribution/cmd/registry;         ;;        esac     && rm -rf "$GOPATH"
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 01e4b36275e7
17:37:23 [2020-03-30T17:37:23.732Z] Step 18/140 : FROM base AS swagger
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.732Z] Step 19/140 : ENV GO_SWAGGER_COMMIT 5793aa66d4b4112c2602c716516e24710e4adbb5
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> cddcee2f6f18
17:37:23 [2020-03-30T17:37:23.732Z] Step 20/140 : RUN set -x     && export GOPATH="$(mktemp -d)"     && git clone https://github.com/kolyshkin/go-swagger.git "$GOPATH/src/github.com/go-swagger/go-swagger"     && (cd "$GOPATH/src/github.com/go-swagger/go-swagger" && git checkout -q "$GO_SWAGGER_COMMIT")     && go build -o /build/swagger github.com/go-swagger/go-swagger/cmd/swagger     && rm -rf "$GOPATH"
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 648de997798b
17:37:23 [2020-03-30T17:37:23.732Z] Step 21/140 : FROM base AS frozen-images
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.732Z] Step 22/140 : ARG DEBIAN_FRONTEND
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 7ff7bc7fc864
17:37:23 [2020-03-30T17:37:23.732Z] Step 23/140 : RUN apt-get update && apt-get install -y --no-install-recommends         ca-certificates         jq     && rm -rf /var/lib/apt/lists/*
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 27bc26085720
17:37:23 [2020-03-30T17:37:23.732Z] Step 24/140 : COPY contrib/download-frozen-image-v2.sh /
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> d14257ebb8d6
17:37:23 [2020-03-30T17:37:23.732Z] Step 25/140 : RUN /download-frozen-image-v2.sh /build         buildpack-deps:jessie@sha256:dd86dced7c9cd2a724e779730f0a53f93b7ef42228d4344b25ce9a42a1486251         busybox:latest@sha256:bbc3a03235220b170ba48a157dd097dd1379299370e1ed99ce976df0355d24f0         busybox:glibc@sha256:0b55a30394294ab23b9afd58fab94e61a923f5834fba7ddbae7f8e0c11ba85e6         debian:jessie@sha256:287a20c5f73087ab406e6b364833e3fb7b3ae63ca0eb3486555dc27ed32c6e60         hello-world:latest@sha256:be0cd392e45be79ffeffa6b05338b98ebb16c87b255f48e297ec7f98e123905c
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> e1c5634e6642
17:37:23 [2020-03-30T17:37:23.732Z] Step 26/140 : FROM base AS cross-false
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.732Z] Step 27/140 : FROM base AS cross-true
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.732Z] Step 28/140 : ARG DEBIAN_FRONTEND
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 7ff7bc7fc864
17:37:23 [2020-03-30T17:37:23.732Z] Step 29/140 : RUN dpkg --add-architecture arm64
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> be0f24d2c062
17:37:23 [2020-03-30T17:37:23.732Z] Step 30/140 : RUN dpkg --add-architecture armel
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> d28bb981a022
17:37:23 [2020-03-30T17:37:23.732Z] Step 31/140 : RUN dpkg --add-architecture armhf
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5756aec2bdec
17:37:23 [2020-03-30T17:37:23.732Z] Step 32/140 : RUN if [ "$(go env GOHOSTARCH)" = "amd64" ]; then         apt-get update && apt-get install -y --no-install-recommends         crossbuild-essential-arm64         crossbuild-essential-armel         crossbuild-essential-armhf         && rm -rf /var/lib/apt/lists/*;     fi
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> db16f83b76d0
17:37:23 [2020-03-30T17:37:23.732Z] Step 33/140 : FROM cross-${CROSS} as dev-base
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.732Z] Step 34/140 : FROM dev-base AS runtime-dev-cross-false
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.732Z] Step 35/140 : ARG DEBIAN_FRONTEND
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 7ff7bc7fc864
17:37:23 [2020-03-30T17:37:23.732Z] Step 36/140 : RUN apt-get update && apt-get install -y --no-install-recommends         libapparmor-dev         libseccomp-dev     && rm -rf /var/lib/apt/lists/*
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> d93c1c43df9d
17:37:23 [2020-03-30T17:37:23.732Z] Step 37/140 : FROM cross-true AS runtime-dev-cross-true
17:37:23 [2020-03-30T17:37:23.732Z]  ---> db16f83b76d0
17:37:23 [2020-03-30T17:37:23.732Z] Step 38/140 : ARG DEBIAN_FRONTEND
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> d038fe9b1eb5
17:37:23 [2020-03-30T17:37:23.732Z] Step 39/140 : RUN if [ "$(go env GOHOSTARCH)" = "amd64" ]; then         apt-get update && apt-get install -y --no-install-recommends             libapparmor-dev:arm64             libapparmor-dev:armel             libapparmor-dev:armhf             libseccomp-dev:arm64             libseccomp-dev:armel             libseccomp-dev:armhf             libapparmor-dev             libseccomp-dev         && rm -rf /var/lib/apt/lists/*;     fi
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 316fc9df90d6
17:37:23 [2020-03-30T17:37:23.732Z] Step 40/140 : FROM runtime-dev-cross-${CROSS} AS runtime-dev
17:37:23 [2020-03-30T17:37:23.732Z]  ---> d93c1c43df9d
17:37:23 [2020-03-30T17:37:23.732Z] Step 41/140 : FROM base AS tomlv
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.732Z] Step 42/140 : ENV INSTALL_BINARY_NAME=tomlv
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> f34da2c08354
17:37:23 [2020-03-30T17:37:23.732Z] Step 43/140 : ARG TOMLV_COMMIT
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> a11cf00a1160
17:37:23 [2020-03-30T17:37:23.732Z] Step 44/140 : COPY hack/dockerfile/install/install.sh ./install.sh
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> e30e17bc85c2
17:37:23 [2020-03-30T17:37:23.732Z] Step 45/140 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 462f6d704796
17:37:23 [2020-03-30T17:37:23.732Z] Step 46/140 : RUN PREFIX=/build ./install.sh $INSTALL_BINARY_NAME
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> c3bb137188c3
17:37:23 [2020-03-30T17:37:23.732Z] Step 47/140 : FROM base AS vndr
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.732Z] Step 48/140 : ENV INSTALL_BINARY_NAME=vndr
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 73d2358c8b66
17:37:23 [2020-03-30T17:37:23.732Z] Step 49/140 : ARG VNDR_COMMIT
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 8bb25749217b
17:37:23 [2020-03-30T17:37:23.732Z] Step 50/140 : COPY hack/dockerfile/install/install.sh ./install.sh
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 0c8205aff199
17:37:23 [2020-03-30T17:37:23.732Z] Step 51/140 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> e3730cc78dc8
17:37:23 [2020-03-30T17:37:23.732Z] Step 52/140 : RUN PREFIX=/build ./install.sh $INSTALL_BINARY_NAME
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> b8d4de5131e7
17:37:23 [2020-03-30T17:37:23.732Z] Step 53/140 : FROM dev-base AS containerd
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 5ab3df366e56
17:37:23 [2020-03-30T17:37:23.732Z] Step 54/140 : ARG DEBIAN_FRONTEND
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 7ff7bc7fc864
17:37:23 [2020-03-30T17:37:23.732Z] Step 55/140 : ARG CONTAINERD_COMMIT
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> fd59462ea0e9
17:37:23 [2020-03-30T17:37:23.732Z] Step 56/140 : RUN apt-get update && apt-get install -y --no-install-recommends         libbtrfs-dev     && rm -rf /var/lib/apt/lists/*
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 47a2034fc637
17:37:23 [2020-03-30T17:37:23.732Z] Step 57/140 : ENV INSTALL_BINARY_NAME=containerd
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 69e4e0a84321
17:37:23 [2020-03-30T17:37:23.732Z] Step 58/140 : COPY hack/dockerfile/install/install.sh ./install.sh
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> 3c3fbe0a735d
17:37:23 [2020-03-30T17:37:23.732Z] Step 59/140 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Using cache
17:37:23 [2020-03-30T17:37:23.732Z]  ---> fe44287758ca
17:37:23 [2020-03-30T17:37:23.732Z] Step 60/140 : RUN PREFIX=/build ./install.sh $INSTALL_BINARY_NAME
17:37:23 [2020-03-30T17:37:23.732Z]  ---> Running in 145ada5379af
17:37:24 [2020-03-30T17:37:24.082Z] + RM_GOPATH=0
17:37:24 [2020-03-30T17:37:24.082Z] + TMP_GOPATH=
17:37:24 [2020-03-30T17:37:24.082Z] + : /build
17:37:24 [2020-03-30T17:37:24.082Z] + '[' -z '' ']'
17:37:24 [2020-03-30T17:37:24.082Z] ++ mktemp -d
17:37:24 [2020-03-30T17:37:24.082Z] + export GOPATH=/tmp/tmp.aWpyO74aS8
17:37:24 [2020-03-30T17:37:24.082Z] + GOPATH=/tmp/tmp.aWpyO74aS8
17:37:24 [2020-03-30T17:37:24.082Z] + RM_GOPATH=1
17:37:24 [2020-03-30T17:37:24.082Z] ++ dirname ./install.sh
17:37:24 [2020-03-30T17:37:24.082Z] + dir=.
17:37:24 [2020-03-30T17:37:24.082Z] + bin=containerd
17:37:24 [2020-03-30T17:37:24.082Z] + shift
17:37:24 [2020-03-30T17:37:24.082Z] + '[' '!' -f ./containerd.installer ']'
17:37:24 [2020-03-30T17:37:24.082Z] + . ./containerd.installer
17:37:24 [2020-03-30T17:37:24.082Z] ++ : 7ad184331fa3e55e52b890ea95e65ba581ae3429
17:37:24 [2020-03-30T17:37:24.082Z] + install_containerd
17:37:24 [2020-03-30T17:37:24.082Z] + echo 'Install containerd version 7ad184331fa3e55e52b890ea95e65ba581ae3429'
17:37:24 [2020-03-30T17:37:24.082Z] + git clone https://github.com/containerd/containerd.git /tmp/tmp.aWpyO74aS8/src/github.com/containerd/containerd
17:37:24 [2020-03-30T17:37:24.082Z] Cloning into '/tmp/tmp.aWpyO74aS8/src/github.com/containerd/containerd'...
17:37:24 [2020-03-30T17:37:24.082Z] Install containerd version 7ad184331fa3e55e52b890ea95e65ba581ae3429
17:37:27 [2020-03-30T17:37:27.190Z] + cd /tmp/tmp.aWpyO74aS8/src/github.com/containerd/containerd
17:37:27 [2020-03-30T17:37:27.190Z] + git checkout -q 7ad184331fa3e55e52b890ea95e65ba581ae3429
17:37:27 [2020-03-30T17:37:27.537Z] + export 'BUILDTAGS=netgo osusergo static_build'
17:37:27 [2020-03-30T17:37:27.537Z] + BUILDTAGS='netgo osusergo static_build'
17:37:27 [2020-03-30T17:37:27.537Z] + export EXTRA_FLAGS=-buildmode=pie
17:37:27 [2020-03-30T17:37:27.537Z] + EXTRA_FLAGS=-buildmode=pie
17:37:27 [2020-03-30T17:37:27.537Z] + export 'EXTRA_LDFLAGS=-extldflags "-fno-PIC -static"'
17:37:27 [2020-03-30T17:37:27.537Z] + EXTRA_LDFLAGS='-extldflags "-fno-PIC -static"'
17:37:27 [2020-03-30T17:37:27.537Z] + '[' '' = dynamic ']'
17:37:27 [2020-03-30T17:37:27.537Z] + make
17:37:28 [2020-03-30T17:37:28.289Z] 🇩 bin/ctr
17:37:51 [2020-03-30T17:37:51.823Z] 🇩 bin/containerd
17:38:08 [2020-03-30T17:38:08.119Z] 🇩 bin/containerd-stress
17:38:08 [2020-03-30T17:38:08.119Z] 🇩 bin/containerd-shim
17:38:13 [2020-03-30T17:38:13.678Z] 🇩 bin/containerd-shim-runc-v1
17:38:16 [2020-03-30T17:38:16.053Z] 🇩 binaries
17:38:16 [2020-03-30T17:38:16.053Z] + mkdir -p /build
17:38:16 [2020-03-30T17:38:16.053Z] + cp bin/containerd /build/containerd
17:38:16 [2020-03-30T17:38:16.053Z] + cp bin/containerd-shim /build/containerd-shim
17:38:16 [2020-03-30T17:38:16.053Z] + cp bin/ctr /build/ctr
17:38:18 [2020-03-30T17:38:18.428Z] Removing intermediate container 145ada5379af
17:38:18 [2020-03-30T17:38:18.428Z]  ---> 61566c025c12
17:38:18 [2020-03-30T17:38:18.428Z] Step 61/140 : FROM dev-base AS proxy
17:38:18 [2020-03-30T17:38:18.428Z]  ---> 5ab3df366e56
17:38:18 [2020-03-30T17:38:18.428Z] Step 62/140 : ENV INSTALL_BINARY_NAME=proxy
17:38:18 [2020-03-30T17:38:18.428Z]  ---> Running in 847a32def107
17:38:18 [2020-03-30T17:38:18.428Z] Removing intermediate container 847a32def107
17:38:18 [2020-03-30T17:38:18.428Z]  ---> 2ed92e207e67
17:38:18 [2020-03-30T17:38:18.428Z] Step 63/140 : ARG LIBNETWORK_COMMIT
17:38:18 [2020-03-30T17:38:18.428Z]  ---> Running in 79f64fe38e8c
17:38:18 [2020-03-30T17:38:18.428Z] Removing intermediate container 79f64fe38e8c
17:38:18 [2020-03-30T17:38:18.428Z]  ---> 26b2f9790e41
17:38:18 [2020-03-30T17:38:18.428Z] Step 64/140 : COPY hack/dockerfile/install/install.sh ./install.sh
17:38:18 [2020-03-30T17:38:18.774Z]  ---> 1a633caf7807
17:38:18 [2020-03-30T17:38:18.774Z] Step 65/140 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
17:38:19 [2020-03-30T17:38:19.124Z]  ---> 9f71fe05d14b
17:38:19 [2020-03-30T17:38:19.124Z] Step 66/140 : RUN PREFIX=/build ./install.sh $INSTALL_BINARY_NAME
17:38:19 [2020-03-30T17:38:19.124Z]  ---> Running in 0da7e254a4a1
17:38:19 [2020-03-30T17:38:19.482Z] + RM_GOPATH=0
17:38:19 [2020-03-30T17:38:19.482Z] + TMP_GOPATH=
17:38:19 [2020-03-30T17:38:19.482Z] + : /build
17:38:19 [2020-03-30T17:38:19.482Z] + '[' -z '' ']'
17:38:19 [2020-03-30T17:38:19.482Z] ++ mktemp -d
17:38:19 [2020-03-30T17:38:19.482Z] + export GOPATH=/tmp/tmp.aJnPEuSkoy
17:38:19 [2020-03-30T17:38:19.482Z] + GOPATH=/tmp/tmp.aJnPEuSkoy
17:38:19 [2020-03-30T17:38:19.482Z] + RM_GOPATH=1
17:38:19 [2020-03-30T17:38:19.482Z] ++ dirname ./install.sh
17:38:19 [2020-03-30T17:38:19.482Z] + dir=.
17:38:19 [2020-03-30T17:38:19.482Z] + bin=proxy
17:38:19 [2020-03-30T17:38:19.482Z] + shift
17:38:19 [2020-03-30T17:38:19.482Z] + '[' '!' -f ./proxy.installer ']'
17:38:19 [2020-03-30T17:38:19.482Z] + . ./proxy.installer
17:38:19 [2020-03-30T17:38:19.482Z] ++ : 0941c3f409260d5f05cfa6fc68420d8ad45ee483
17:38:19 [2020-03-30T17:38:19.482Z] + install_proxy
17:38:19 [2020-03-30T17:38:19.482Z] + case "$1" in
17:38:19 [2020-03-30T17:38:19.482Z] + export CGO_ENABLED=0
17:38:19 [2020-03-30T17:38:19.482Z] + CGO_ENABLED=0
17:38:19 [2020-03-30T17:38:19.482Z] + _install_proxy
17:38:19 [2020-03-30T17:38:19.482Z] + echo 'Install docker-proxy version 0941c3f409260d5f05cfa6fc68420d8ad45ee483'
17:38:19 [2020-03-30T17:38:19.482Z] + git clone https://github.com/docker/libnetwork.git /tmp/tmp.aJnPEuSkoy/src/github.com/docker/libnetwork
17:38:19 [2020-03-30T17:38:19.482Z] Install docker-proxy version 0941c3f409260d5f05cfa6fc68420d8ad45ee483
17:38:19 [2020-03-30T17:38:19.482Z] Cloning into '/tmp/tmp.aJnPEuSkoy/src/github.com/docker/libnetwork'...
17:38:21 [2020-03-30T17:38:21.420Z] + cd /tmp/tmp.aJnPEuSkoy/src/github.com/docker/libnetwork
17:38:21 [2020-03-30T17:38:21.420Z] + git checkout -q 0941c3f409260d5f05cfa6fc68420d8ad45ee483
17:38:21 [2020-03-30T17:38:21.420Z] + go build -ldflags= -o /build/docker-proxy github.com/docker/libnetwork/cmd/proxy
17:38:23 [2020-03-30T17:38:23.819Z] Removing intermediate container 0da7e254a4a1
17:38:23 [2020-03-30T17:38:23.819Z]  ---> a25857161eb2
17:38:23 [2020-03-30T17:38:23.819Z] Step 67/140 : FROM base AS gometalinter
17:38:23 [2020-03-30T17:38:23.819Z]  ---> 5ab3df366e56
17:38:23 [2020-03-30T17:38:23.819Z] Step 68/140 : ENV INSTALL_BINARY_NAME=gometalinter
17:38:23 [2020-03-30T17:38:23.819Z]  ---> Running in 05a72fad4f63
17:38:23 [2020-03-30T17:38:23.819Z] Removing intermediate container 05a72fad4f63
17:38:23 [2020-03-30T17:38:23.819Z]  ---> 5fb995586938
17:38:23 [2020-03-30T17:38:23.819Z] Step 69/140 : COPY hack/dockerfile/install/install.sh ./install.sh
17:38:24 [2020-03-30T17:38:24.175Z]  ---> 614a07402616
17:38:24 [2020-03-30T17:38:24.175Z] Step 70/140 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
17:38:24 [2020-03-30T17:38:24.175Z]  ---> bac3ec8a7275
17:38:24 [2020-03-30T17:38:24.175Z] Step 71/140 : RUN PREFIX=/build ./install.sh $INSTALL_BINARY_NAME
17:38:24 [2020-03-30T17:38:24.175Z]  ---> Running in 84497c7325b0
17:38:24 [2020-03-30T17:38:24.952Z] + RM_GOPATH=0
17:38:24 [2020-03-30T17:38:24.952Z] + TMP_GOPATH=
17:38:24 [2020-03-30T17:38:24.952Z] + : /build
17:38:24 [2020-03-30T17:38:24.952Z] + '[' -z '' ']'
17:38:24 [2020-03-30T17:38:24.952Z] ++ mktemp -d
17:38:24 [2020-03-30T17:38:24.952Z] + export GOPATH=/tmp/tmp.G5Uwi1OX4Y
17:38:24 [2020-03-30T17:38:24.952Z] + GOPATH=/tmp/tmp.G5Uwi1OX4Y
17:38:24 [2020-03-30T17:38:24.952Z] + RM_GOPATH=1
17:38:24 [2020-03-30T17:38:24.952Z] ++ dirname ./install.sh
17:38:24 [2020-03-30T17:38:24.952Z] Installing gometalinter version v2.0.6
17:38:24 [2020-03-30T17:38:24.952Z] + dir=.
17:38:24 [2020-03-30T17:38:24.952Z] + bin=gometalinter
17:38:24 [2020-03-30T17:38:24.952Z] + shift
17:38:24 [2020-03-30T17:38:24.952Z] + '[' '!' -f ./gometalinter.installer ']'
17:38:24 [2020-03-30T17:38:24.952Z] + . ./gometalinter.installer
17:38:24 [2020-03-30T17:38:24.952Z] ++ GOMETALINTER_COMMIT=v2.0.6
17:38:24 [2020-03-30T17:38:24.952Z] + install_gometalinter
17:38:24 [2020-03-30T17:38:24.952Z] + echo 'Installing gometalinter version v2.0.6'
17:38:24 [2020-03-30T17:38:24.952Z] + go get -d github.com/alecthomas/gometalinter
17:38:25 [2020-03-30T17:38:25.712Z] + cd /tmp/tmp.G5Uwi1OX4Y/src/github.com/alecthomas/gometalinter
17:38:25 [2020-03-30T17:38:25.713Z] + git checkout -q v2.0.6
17:38:25 [2020-03-30T17:38:25.713Z] + go build -buildmode=pie -o /build/gometalinter github.com/alecthomas/gometalinter
17:38:33 [2020-03-30T17:38:33.295Z] + GOBIN=/build
17:38:33 [2020-03-30T17:38:33.295Z] + /build/gometalinter --install
17:38:33 [2020-03-30T17:38:33.295Z] Installing:
17:38:33 [2020-03-30T17:38:33.295Z]   deadcode
17:38:33 [2020-03-30T17:38:33.295Z]   dupl
17:38:33 [2020-03-30T17:38:33.295Z]   errcheck
17:38:33 [2020-03-30T17:38:33.295Z]   gas
17:38:33 [2020-03-30T17:38:33.295Z]   gochecknoglobals
17:38:33 [2020-03-30T17:38:33.295Z]   gochecknoinits
17:38:33 [2020-03-30T17:38:33.295Z]   goconst
17:38:33 [2020-03-30T17:38:33.295Z]   gocyclo
17:38:33 [2020-03-30T17:38:33.295Z]   goimports
17:38:33 [2020-03-30T17:38:33.295Z]   golint
17:38:33 [2020-03-30T17:38:33.295Z]   gosimple
17:38:33 [2020-03-30T17:38:33.295Z]   gotype
17:38:33 [2020-03-30T17:38:33.295Z]   gotypex
17:38:33 [2020-03-30T17:38:33.295Z]   ineffassign
17:38:33 [2020-03-30T17:38:33.295Z]   interfacer
17:38:33 [2020-03-30T17:38:33.295Z]   lll
17:38:33 [2020-03-30T17:38:33.295Z]   maligned
17:38:33 [2020-03-30T17:38:33.295Z]   megacheck
17:38:33 [2020-03-30T17:38:33.295Z]   misspell
17:38:33 [2020-03-30T17:38:33.295Z]   nakedret
17:38:33 [2020-03-30T17:38:33.295Z]   safesql
17:38:33 [2020-03-30T17:38:33.295Z]   staticcheck
17:38:33 [2020-03-30T17:38:33.295Z]   structcheck
17:38:33 [2020-03-30T17:38:33.295Z]   unconvert
17:38:33 [2020-03-30T17:38:33.295Z]   unparam
17:38:33 [2020-03-30T17:38:33.295Z]   unused
17:38:33 [2020-03-30T17:38:33.295Z]   varcheck
17:38:46 [2020-03-30T17:38:46.792Z] Removing intermediate container 84497c7325b0
17:38:46 [2020-03-30T17:38:46.792Z]  ---> bc45e472c082
17:38:46 [2020-03-30T17:38:46.792Z] Step 72/140 : FROM base AS gotestsum
17:38:46 [2020-03-30T17:38:46.792Z]  ---> 5ab3df366e56
17:38:46 [2020-03-30T17:38:46.792Z] Step 73/140 : ENV INSTALL_BINARY_NAME=gotestsum
17:38:46 [2020-03-30T17:38:46.792Z]  ---> Running in 9a04c4dab172
17:38:46 [2020-03-30T17:38:46.792Z] Removing intermediate container 9a04c4dab172
17:38:46 [2020-03-30T17:38:46.792Z]  ---> 0a7fdf5e0737
17:38:46 [2020-03-30T17:38:46.792Z] Step 74/140 : ARG GOTESTSUM_COMMIT
17:38:46 [2020-03-30T17:38:46.792Z]  ---> Running in 09bd0573445e
17:38:46 [2020-03-30T17:38:46.792Z] Removing intermediate container 09bd0573445e
17:38:46 [2020-03-30T17:38:46.792Z]  ---> 7867c66f3b0e
17:38:46 [2020-03-30T17:38:46.792Z] Step 75/140 : COPY hack/dockerfile/install/install.sh ./install.sh
17:38:46 [2020-03-30T17:38:46.792Z]  ---> b37c24177d3e
17:38:46 [2020-03-30T17:38:46.792Z] Step 76/140 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
17:38:47 [2020-03-30T17:38:47.147Z]  ---> 400c0a62b8f6
17:38:47 [2020-03-30T17:38:47.147Z] Step 77/140 : RUN PREFIX=/build ./install.sh $INSTALL_BINARY_NAME
17:38:47 [2020-03-30T17:38:47.147Z]  ---> Running in 2d68b86c2239
17:38:47 [2020-03-30T17:38:47.902Z] + RM_GOPATH=0
17:38:47 [2020-03-30T17:38:47.902Z] + TMP_GOPATH=
17:38:47 [2020-03-30T17:38:47.902Z] + : /build
17:38:47 [2020-03-30T17:38:47.902Z] + '[' -z '' ']'
17:38:47 [2020-03-30T17:38:47.902Z] Installing gotestsum version v0.3.5
17:38:47 [2020-03-30T17:38:47.902Z] ++ mktemp -d
17:38:47 [2020-03-30T17:38:47.902Z] + export GOPATH=/tmp/tmp.EWBMxGDYl5
17:38:47 [2020-03-30T17:38:47.902Z] + GOPATH=/tmp/tmp.EWBMxGDYl5
17:38:47 [2020-03-30T17:38:47.902Z] + RM_GOPATH=1
17:38:47 [2020-03-30T17:38:47.902Z] ++ dirname ./install.sh
17:38:47 [2020-03-30T17:38:47.902Z] + dir=.
17:38:47 [2020-03-30T17:38:47.902Z] + bin=gotestsum
17:38:47 [2020-03-30T17:38:47.902Z] + shift
17:38:47 [2020-03-30T17:38:47.902Z] + '[' '!' -f ./gotestsum.installer ']'
17:38:47 [2020-03-30T17:38:47.902Z] + . ./gotestsum.installer
17:38:47 [2020-03-30T17:38:47.902Z] ++ : v0.3.5
17:38:47 [2020-03-30T17:38:47.902Z] + install_gotestsum
17:38:47 [2020-03-30T17:38:47.902Z] + echo 'Installing gotestsum version v0.3.5'
17:38:47 [2020-03-30T17:38:47.902Z] + go get -d gotest.tools/gotestsum
17:38:52 [2020-03-30T17:38:52.805Z] + cd /tmp/tmp.EWBMxGDYl5/src/gotest.tools/gotestsum
17:38:52 [2020-03-30T17:38:52.805Z] + git checkout -q v0.3.5
17:38:52 [2020-03-30T17:38:52.805Z] + go build -buildmode=pie -o /build/gotestsum gotest.tools/gotestsum
17:39:04 [2020-03-30T17:39:04.015Z] Removing intermediate container 2d68b86c2239
17:39:04 [2020-03-30T17:39:04.015Z]  ---> 78614abaed5c
17:39:04 [2020-03-30T17:39:04.015Z] Step 78/140 : FROM dev-base AS dockercli
17:39:04 [2020-03-30T17:39:04.015Z]  ---> 5ab3df366e56
17:39:04 [2020-03-30T17:39:04.015Z] Step 79/140 : ENV INSTALL_BINARY_NAME=dockercli
17:39:04 [2020-03-30T17:39:04.015Z]  ---> Running in 9493efca3e0e
17:39:04 [2020-03-30T17:39:04.015Z] Removing intermediate container 9493efca3e0e
17:39:04 [2020-03-30T17:39:04.015Z]  ---> 2af543f65bef
17:39:04 [2020-03-30T17:39:04.015Z] Step 80/140 : ARG DOCKERCLI_CHANNEL
17:39:04 [2020-03-30T17:39:04.015Z]  ---> Running in fdd03dfabfae
17:39:04 [2020-03-30T17:39:04.015Z] Removing intermediate container fdd03dfabfae
17:39:04 [2020-03-30T17:39:04.015Z]  ---> 7021e825e3f6
17:39:04 [2020-03-30T17:39:04.015Z] Step 81/140 : ARG DOCKERCLI_VERSION
17:39:04 [2020-03-30T17:39:04.015Z]  ---> Running in ed8cafda717a
17:39:04 [2020-03-30T17:39:04.015Z] Removing intermediate container ed8cafda717a
17:39:04 [2020-03-30T17:39:04.015Z]  ---> fededbe16d55
17:39:04 [2020-03-30T17:39:04.015Z] Step 82/140 : COPY hack/dockerfile/install/install.sh ./install.sh
17:39:04 [2020-03-30T17:39:04.015Z]  ---> 1d98ee1a0f07
17:39:04 [2020-03-30T17:39:04.015Z] Step 83/140 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
17:39:04 [2020-03-30T17:39:04.015Z]  ---> 2edc567faed8
17:39:04 [2020-03-30T17:39:04.015Z] Step 84/140 : RUN PREFIX=/build ./install.sh $INSTALL_BINARY_NAME
17:39:04 [2020-03-30T17:39:04.015Z]  ---> Running in 5532002f3b55
17:39:04 [2020-03-30T17:39:04.378Z] + RM_GOPATH=0
17:39:04 [2020-03-30T17:39:04.378Z] + TMP_GOPATH=
17:39:04 [2020-03-30T17:39:04.378Z] + : /build
17:39:04 [2020-03-30T17:39:04.378Z] + '[' -z '' ']'
17:39:04 [2020-03-30T17:39:04.378Z] ++ mktemp -d
17:39:04 [2020-03-30T17:39:04.378Z] + export GOPATH=/tmp/tmp.WdiGFYpJYh
17:39:04 [2020-03-30T17:39:04.378Z] + GOPATH=/tmp/tmp.WdiGFYpJYh
17:39:04 [2020-03-30T17:39:04.378Z] + RM_GOPATH=1
17:39:04 [2020-03-30T17:39:04.378Z] ++ dirname ./install.sh
17:39:04 [2020-03-30T17:39:04.378Z] Install docker/cli version 17.06.2-ce from stable
17:39:04 [2020-03-30T17:39:04.378Z] + dir=.
17:39:04 [2020-03-30T17:39:04.378Z] + bin=dockercli
17:39:04 [2020-03-30T17:39:04.378Z] + shift
17:39:04 [2020-03-30T17:39:04.378Z] + '[' '!' -f ./dockercli.installer ']'
17:39:04 [2020-03-30T17:39:04.378Z] + . ./dockercli.installer
17:39:04 [2020-03-30T17:39:04.378Z] ++ : stable
17:39:04 [2020-03-30T17:39:04.378Z] ++ : 17.06.2-ce
17:39:04 [2020-03-30T17:39:04.378Z] + install_dockercli
17:39:04 [2020-03-30T17:39:04.378Z] + echo 'Install docker/cli version 17.06.2-ce from stable'
17:39:04 [2020-03-30T17:39:04.378Z] ++ uname -m
17:39:04 [2020-03-30T17:39:04.378Z] + arch=s390x
17:39:04 [2020-03-30T17:39:04.378Z] + '[' s390x '!=' x86_64 ']'
17:39:04 [2020-03-30T17:39:04.378Z] + '[' s390x '!=' s390x ']'
17:39:04 [2020-03-30T17:39:04.378Z] + url=https://download.docker.com/linux/static
17:39:04 [2020-03-30T17:39:04.378Z] + curl -Ls https://download.docker.com/linux/static/stable/s390x/docker-17.06.2-ce.tgz
17:39:04 [2020-03-30T17:39:04.378Z] + tar -xz docker/docker
17:39:05 [2020-03-30T17:39:05.120Z] + mkdir -p /build
17:39:05 [2020-03-30T17:39:05.120Z] + mv docker/docker /build/
17:39:05 [2020-03-30T17:39:05.120Z] + rmdir docker
17:39:05 [2020-03-30T17:39:05.872Z] Removing intermediate container 5532002f3b55
17:39:05 [2020-03-30T17:39:05.872Z]  ---> 5c8619d73325
17:39:05 [2020-03-30T17:39:05.872Z] Step 85/140 : FROM runtime-dev AS runc
17:39:05 [2020-03-30T17:39:05.872Z]  ---> d93c1c43df9d
17:39:05 [2020-03-30T17:39:05.872Z] Step 86/140 : ENV INSTALL_BINARY_NAME=runc
17:39:05 [2020-03-30T17:39:05.872Z]  ---> Running in ff8970678d5c
17:39:06 [2020-03-30T17:39:06.233Z] Removing intermediate container ff8970678d5c
17:39:06 [2020-03-30T17:39:06.233Z]  ---> 106c824d58ac
17:39:06 [2020-03-30T17:39:06.233Z] Step 87/140 : ARG RUNC_COMMIT
17:39:06 [2020-03-30T17:39:06.233Z]  ---> Running in 54a5e8a752d3
17:39:06 [2020-03-30T17:39:06.233Z] Removing intermediate container 54a5e8a752d3
17:39:06 [2020-03-30T17:39:06.233Z]  ---> fcedbe2433a9
17:39:06 [2020-03-30T17:39:06.233Z] Step 88/140 : ARG RUNC_BUILDTAGS
17:39:06 [2020-03-30T17:39:06.233Z]  ---> Running in 3c8cbd799b32
17:39:06 [2020-03-30T17:39:06.593Z] Removing intermediate container 3c8cbd799b32
17:39:06 [2020-03-30T17:39:06.593Z]  ---> 932be9083217
17:39:06 [2020-03-30T17:39:06.593Z] Step 89/140 : COPY hack/dockerfile/install/install.sh ./install.sh
17:39:06 [2020-03-30T17:39:06.938Z]  ---> 9b61d8f3fa23
17:39:06 [2020-03-30T17:39:06.938Z] Step 90/140 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
17:39:07 [2020-03-30T17:39:07.284Z]  ---> ba9739d46a39
17:39:07 [2020-03-30T17:39:07.284Z] Step 91/140 : RUN PREFIX=/build ./install.sh $INSTALL_BINARY_NAME
17:39:07 [2020-03-30T17:39:07.284Z]  ---> Running in 613bc0184fb8
17:39:07 [2020-03-30T17:39:07.634Z] + RM_GOPATH=0
17:39:07 [2020-03-30T17:39:07.634Z] + TMP_GOPATH=
17:39:07 [2020-03-30T17:39:07.634Z] + : /build
17:39:07 [2020-03-30T17:39:07.634Z] + '[' -z '' ']'
17:39:07 [2020-03-30T17:39:07.634Z] ++ mktemp -d
17:39:07 [2020-03-30T17:39:07.634Z] + export GOPATH=/tmp/tmp.tEfEjw7IL9
17:39:07 [2020-03-30T17:39:07.634Z] + GOPATH=/tmp/tmp.tEfEjw7IL9
17:39:07 [2020-03-30T17:39:07.634Z] + RM_GOPATH=1
17:39:07 [2020-03-30T17:39:07.634Z] ++ dirname ./install.sh
17:39:07 [2020-03-30T17:39:07.634Z] + dir=.
17:39:07 [2020-03-30T17:39:07.634Z] + bin=runc
17:39:07 [2020-03-30T17:39:07.634Z] + shift
17:39:07 [2020-03-30T17:39:07.634Z] + '[' '!' -f ./runc.installer ']'
17:39:07 [2020-03-30T17:39:07.634Z] + . ./runc.installer
17:39:07 [2020-03-30T17:39:07.634Z] ++ : dc9208a3303feef5b3839f4323d9beb36df0a9dd
17:39:07 [2020-03-30T17:39:07.634Z] + install_runc
17:39:07 [2020-03-30T17:39:07.634Z] + uname -r
17:39:07 [2020-03-30T17:39:07.634Z] + grep -q '^3\.10\.0.*\.el7\.'
17:39:07 [2020-03-30T17:39:07.634Z] + RUNC_BUILDTAGS='seccomp apparmor selinux '
17:39:07 [2020-03-30T17:39:07.634Z] + echo 'Install runc version dc9208a3303feef5b3839f4323d9beb36df0a9dd (build tags: seccomp apparmor selinux )'
17:39:07 [2020-03-30T17:39:07.634Z] + git clone https://github.com/opencontainers/runc.git /tmp/tmp.tEfEjw7IL9/src/github.com/opencontainers/runc
17:39:07 [2020-03-30T17:39:07.634Z] Install runc version dc9208a3303feef5b3839f4323d9beb36df0a9dd (build tags: seccomp apparmor selinux )
17:39:07 [2020-03-30T17:39:07.634Z] Cloning into '/tmp/tmp.tEfEjw7IL9/src/github.com/opencontainers/runc'...
17:39:08 [2020-03-30T17:39:08.877Z] + cd /tmp/tmp.tEfEjw7IL9/src/github.com/opencontainers/runc
17:39:08 [2020-03-30T17:39:08.877Z] + git checkout -q dc9208a3303feef5b3839f4323d9beb36df0a9dd
17:39:08 [2020-03-30T17:39:08.877Z] + '[' -z '' ']'
17:39:08 [2020-03-30T17:39:08.877Z] + target=static
17:39:08 [2020-03-30T17:39:08.877Z] + make 'BUILDTAGS=seccomp apparmor selinux ' static
17:39:08 [2020-03-30T17:39:08.877Z] CGO_ENABLED=1 go build  -tags "seccomp apparmor selinux  netgo osusergo" -installsuffix netgo -ldflags "-w -extldflags -static -X main.gitCommit="dc9208a3303feef5b3839f4323d9beb36df0a9dd" -X main.version=1.0.0-rc10 " -o runc .
17:39:22 [2020-03-30T17:39:22.508Z] CGO_ENABLED=1 go build  -tags "seccomp apparmor selinux  netgo osusergo" -installsuffix netgo -ldflags "-w -extldflags -static -X main.gitCommit="dc9208a3303feef5b3839f4323d9beb36df0a9dd" -X main.version=1.0.0-rc10 " -o contrib/cmd/recvtty/recvtty ./contrib/cmd/recvtty
17:39:22 [2020-03-30T17:39:22.508Z] + mkdir -p /build
17:39:22 [2020-03-30T17:39:22.508Z] + cp runc /build/runc
17:39:22 [2020-03-30T17:39:22.873Z] Removing intermediate container 613bc0184fb8
17:39:22 [2020-03-30T17:39:22.873Z]  ---> f4bf593f3fe2
17:39:22 [2020-03-30T17:39:22.873Z] Step 92/140 : FROM dev-base AS tini
17:39:22 [2020-03-30T17:39:22.873Z]  ---> 5ab3df366e56
17:39:22 [2020-03-30T17:39:22.873Z] Step 93/140 : ARG DEBIAN_FRONTEND
17:39:22 [2020-03-30T17:39:22.873Z]  ---> Using cache
17:39:22 [2020-03-30T17:39:22.873Z]  ---> 7ff7bc7fc864
17:39:22 [2020-03-30T17:39:22.873Z] Step 94/140 : ARG TINI_COMMIT
17:39:22 [2020-03-30T17:39:22.873Z]  ---> Running in f674d8580789
17:39:23 [2020-03-30T17:39:23.218Z] Removing intermediate container f674d8580789
17:39:23 [2020-03-30T17:39:23.218Z]  ---> 3835f98ecc94
17:39:23 [2020-03-30T17:39:23.218Z] Step 95/140 : RUN apt-get update && apt-get install -y --no-install-recommends         cmake         vim-common     && rm -rf /var/lib/apt/lists/*
17:39:23 [2020-03-30T17:39:23.218Z]  ---> Running in 1c2f28d24f1b
17:39:23 [2020-03-30T17:39:23.974Z] Get:1 http://cdn-fastly.deb.debian.org/debian buster InRelease [122 kB]
17:39:23 [2020-03-30T17:39:23.974Z] Get:2 http://cdn-fastly.deb.debian.org/debian-security buster/updates InRelease [65.4 kB]
17:39:23 [2020-03-30T17:39:23.974Z] Get:3 http://cdn-fastly.deb.debian.org/debian buster-updates InRelease [49.3 kB]
17:39:23 [2020-03-30T17:39:23.974Z] Get:4 http://cdn-fastly.deb.debian.org/debian buster/main s390x Packages [7624 kB]
17:39:23 [2020-03-30T17:39:23.974Z] Get:5 http://cdn-fastly.deb.debian.org/debian-security buster/updates/main s390x Packages [165 kB]
17:39:24 [2020-03-30T17:39:24.341Z] Get:6 http://cdn-fastly.deb.debian.org/debian buster-updates/main s390x Packages [7380 B]
17:39:25 [2020-03-30T17:39:25.078Z] Fetched 8032 kB in 1s (6002 kB/s)
17:39:25 [2020-03-30T17:39:25.432Z] Reading package lists...
17:39:26 [2020-03-30T17:39:26.177Z] Reading package lists...
17:39:26 [2020-03-30T17:39:26.177Z] Building dependency tree...
17:39:26 [2020-03-30T17:39:26.177Z] Reading state information...
17:39:26 [2020-03-30T17:39:26.177Z] The following additional packages will be installed:
17:39:26 [2020-03-30T17:39:26.177Z]   cmake-data libarchive13 libicu63 libjsoncpp1 librhash0 libuv1 libxml2 xxd
17:39:26 [2020-03-30T17:39:26.177Z] Suggested packages:
17:39:26 [2020-03-30T17:39:26.177Z]   cmake-doc ninja-build lrzip
17:39:26 [2020-03-30T17:39:26.177Z] Recommended packages:
17:39:26 [2020-03-30T17:39:26.177Z]   vim | vim-gtk | vim-gtk3 | vim-athena | vim-nox | vim-tiny
17:39:26 [2020-03-30T17:39:26.177Z] The following NEW packages will be installed:
17:39:26 [2020-03-30T17:39:26.177Z]   cmake cmake-data libarchive13 libicu63 libjsoncpp1 librhash0 libuv1 libxml2
17:39:26 [2020-03-30T17:39:26.177Z]   vim-common xxd
17:39:26 [2020-03-30T17:39:26.177Z] 0 upgraded, 10 newly installed, 0 to remove and 14 not upgraded.
17:39:26 [2020-03-30T17:39:26.177Z] Need to get 14.0 MB of archives.
17:39:26 [2020-03-30T17:39:26.177Z] After this operation, 62.1 MB of additional disk space will be used.
17:39:26 [2020-03-30T17:39:26.177Z] Get:1 http://cdn-fastly.deb.debian.org/debian buster/main s390x xxd s390x 2:8.1.0875-5 [139 kB]
17:39:26 [2020-03-30T17:39:26.177Z] Get:2 http://cdn-fastly.deb.debian.org/debian buster/main s390x vim-common all 2:8.1.0875-5 [195 kB]
17:39:26 [2020-03-30T17:39:26.177Z] Get:3 http://cdn-fastly.deb.debian.org/debian buster/main s390x cmake-data all 3.13.4-1 [1476 kB]
17:39:26 [2020-03-30T17:39:26.527Z] Get:4 http://cdn-fastly.deb.debian.org/debian-security buster/updates/main s390x libicu63 s390x 63.1-6+deb10u1 [8035 kB]
17:39:26 [2020-03-30T17:39:26.527Z] Get:5 http://cdn-fastly.deb.debian.org/debian buster/main s390x libxml2 s390x 2.9.4+dfsg1-7+b3 [606 kB]
17:39:26 [2020-03-30T17:39:26.527Z] Get:6 http://cdn-fastly.deb.debian.org/debian buster/main s390x libarchive13 s390x 3.3.3-4+deb10u1 [290 kB]
17:39:26 [2020-03-30T17:39:26.527Z] Get:7 http://cdn-fastly.deb.debian.org/debian buster/main s390x libjsoncpp1 s390x 1.7.4-3 [73.6 kB]
17:39:26 [2020-03-30T17:39:26.527Z] Get:8 http://cdn-fastly.deb.debian.org/debian buster/main s390x librhash0 s390x 1.3.8-1 [121 kB]
17:39:26 [2020-03-30T17:39:26.527Z] Get:9 http://cdn-fastly.deb.debian.org/debian buster/main s390x libuv1 s390x 1.24.1-1 [104 kB]
17:39:26 [2020-03-30T17:39:26.527Z] Get:10 http://cdn-fastly.deb.debian.org/debian buster/main s390x cmake s390x 3.13.4-1 [2912 kB]
17:39:26 [2020-03-30T17:39:26.900Z] debconf: delaying package configuration, since apt-utils is not installed
17:39:26 [2020-03-30T17:39:26.900Z] Fetched 14.0 MB in 0s (28.2 MB/s)
17:39:26 [2020-03-30T17:39:26.900Z] Selecting previously unselected package xxd.
17:39:26 [2020-03-30T17:39:26.900Z] (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15168 files and directories currently installed.)
17:39:26 [2020-03-30T17:39:26.900Z] Preparing to unpack .../0-xxd_2%3a8.1.0875-5_s390x.deb ...
17:39:26 [2020-03-30T17:39:26.900Z] Unpacking xxd (2:8.1.0875-5) ...
17:39:26 [2020-03-30T17:39:26.900Z] Selecting previously unselected package vim-common.
17:39:26 [2020-03-30T17:39:26.900Z] Preparing to unpack .../1-vim-common_2%3a8.1.0875-5_all.deb ...
17:39:26 [2020-03-30T17:39:26.900Z] Unpacking vim-common (2:8.1.0875-5) ...
17:39:26 [2020-03-30T17:39:26.900Z] Selecting previously unselected package cmake-data.
17:39:26 [2020-03-30T17:39:26.900Z] Preparing to unpack .../2-cmake-data_3.13.4-1_all.deb ...
17:39:26 [2020-03-30T17:39:26.900Z] Unpacking cmake-data (3.13.4-1) ...
17:39:27 [2020-03-30T17:39:27.246Z] Selecting previously unselected package libicu63:s390x.
17:39:27 [2020-03-30T17:39:27.246Z] Preparing to unpack .../3-libicu63_63.1-6+deb10u1_s390x.deb ...
17:39:27 [2020-03-30T17:39:27.246Z] Unpacking libicu63:s390x (63.1-6+deb10u1) ...
17:39:27 [2020-03-30T17:39:27.989Z] Selecting previously unselected package libxml2:s390x.
17:39:27 [2020-03-30T17:39:27.989Z] Preparing to unpack .../4-libxml2_2.9.4+dfsg1-7+b3_s390x.deb ...
17:39:27 [2020-03-30T17:39:27.989Z] Unpacking libxml2:s390x (2.9.4+dfsg1-7+b3) ...
17:39:27 [2020-03-30T17:39:27.989Z] Selecting previously unselected package libarchive13:s390x.
17:39:27 [2020-03-30T17:39:27.989Z] Preparing to unpack .../5-libarchive13_3.3.3-4+deb10u1_s390x.deb ...
17:39:27 [2020-03-30T17:39:27.989Z] Unpacking libarchive13:s390x (3.3.3-4+deb10u1) ...
17:39:27 [2020-03-30T17:39:27.989Z] Selecting previously unselected package libjsoncpp1:s390x.
17:39:27 [2020-03-30T17:39:27.989Z] Preparing to unpack .../6-libjsoncpp1_1.7.4-3_s390x.deb ...
17:39:27 [2020-03-30T17:39:27.989Z] Unpacking libjsoncpp1:s390x (1.7.4-3) ...
17:39:27 [2020-03-30T17:39:27.989Z] Selecting previously unselected package librhash0:s390x.
17:39:27 [2020-03-30T17:39:27.989Z] Preparing to unpack .../7-librhash0_1.3.8-1_s390x.deb ...
17:39:27 [2020-03-30T17:39:27.989Z] Unpacking librhash0:s390x (1.3.8-1) ...
17:39:27 [2020-03-30T17:39:27.989Z] Selecting previously unselected package libuv1:s390x.
17:39:27 [2020-03-30T17:39:27.989Z] Preparing to unpack .../8-libuv1_1.24.1-1_s390x.deb ...
17:39:27 [2020-03-30T17:39:27.989Z] Unpacking libuv1:s390x (1.24.1-1) ...
17:39:28 [2020-03-30T17:39:28.342Z] Selecting previously unselected package cmake.
17:39:28 [2020-03-30T17:39:28.342Z] Preparing to unpack .../9-cmake_3.13.4-1_s390x.deb ...
17:39:28 [2020-03-30T17:39:28.342Z] Unpacking cmake (3.13.4-1) ...
17:39:28 [2020-03-30T17:39:28.689Z] Setting up libicu63:s390x (63.1-6+deb10u1) ...
17:39:28 [2020-03-30T17:39:28.689Z] Setting up xxd (2:8.1.0875-5) ...
17:39:28 [2020-03-30T17:39:28.689Z] Setting up libuv1:s390x (1.24.1-1) ...
17:39:28 [2020-03-30T17:39:28.689Z] Setting up vim-common (2:8.1.0875-5) ...
17:39:28 [2020-03-30T17:39:28.689Z] Setting up librhash0:s390x (1.3.8-1) ...
17:39:28 [2020-03-30T17:39:28.689Z] Setting up cmake-data (3.13.4-1) ...
17:39:28 [2020-03-30T17:39:28.689Z] Setting up libxml2:s390x (2.9.4+dfsg1-7+b3) ...
17:39:28 [2020-03-30T17:39:28.689Z] Setting up libjsoncpp1:s390x (1.7.4-3) ...
17:39:28 [2020-03-30T17:39:28.689Z] Setting up libarchive13:s390x (3.3.3-4+deb10u1) ...
17:39:28 [2020-03-30T17:39:28.689Z] Setting up cmake (3.13.4-1) ...
17:39:28 [2020-03-30T17:39:28.689Z] Processing triggers for libc-bin (2.28-10) ...
17:39:28 [2020-03-30T17:39:28.689Z] Processing triggers for mime-support (3.62) ...
17:39:29 [2020-03-30T17:39:29.903Z] Removing intermediate container 1c2f28d24f1b
17:39:29 [2020-03-30T17:39:29.903Z]  ---> 87169e429af3
17:39:29 [2020-03-30T17:39:29.903Z] Step 96/140 : COPY hack/dockerfile/install/install.sh ./install.sh
17:39:30 [2020-03-30T17:39:30.254Z]  ---> 9c2d90b449e7
17:39:30 [2020-03-30T17:39:30.254Z] Step 97/140 : ENV INSTALL_BINARY_NAME=tini
17:39:30 [2020-03-30T17:39:30.254Z]  ---> Running in 82a857271a22
17:39:30 [2020-03-30T17:39:30.254Z] Removing intermediate container 82a857271a22
17:39:30 [2020-03-30T17:39:30.254Z]  ---> 5f6d341ca76f
17:39:30 [2020-03-30T17:39:30.254Z] Step 98/140 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
17:39:30 [2020-03-30T17:39:30.600Z]  ---> 66aa0787623c
17:39:30 [2020-03-30T17:39:30.600Z] Step 99/140 : RUN PREFIX=/build ./install.sh $INSTALL_BINARY_NAME
17:39:30 [2020-03-30T17:39:30.600Z]  ---> Running in 9f16cb860b45
17:39:31 [2020-03-30T17:39:31.356Z] + RM_GOPATH=0
17:39:31 [2020-03-30T17:39:31.356Z] + TMP_GOPATH=
17:39:31 [2020-03-30T17:39:31.356Z] + : /build
17:39:31 [2020-03-30T17:39:31.356Z] + '[' -z '' ']'
17:39:31 [2020-03-30T17:39:31.356Z] ++ mktemp -d
17:39:31 [2020-03-30T17:39:31.356Z] + export GOPATH=/tmp/tmp.qLSMWM2WFm
17:39:31 [2020-03-30T17:39:31.356Z] + GOPATH=/tmp/tmp.qLSMWM2WFm
17:39:31 [2020-03-30T17:39:31.356Z] + RM_GOPATH=1
17:39:31 [2020-03-30T17:39:31.356Z] ++ dirname ./install.sh
17:39:31 [2020-03-30T17:39:31.356Z] + dir=.
17:39:31 [2020-03-30T17:39:31.356Z] + bin=tini
17:39:31 [2020-03-30T17:39:31.356Z] + shift
17:39:31 [2020-03-30T17:39:31.356Z] + '[' '!' -f ./tini.installer ']'
17:39:31 [2020-03-30T17:39:31.356Z] + . ./tini.installer
17:39:31 [2020-03-30T17:39:31.356Z] ++ : fec3683b971d9c3ef73f284f176672c44b448662
17:39:31 [2020-03-30T17:39:31.356Z] + install_tini
17:39:31 [2020-03-30T17:39:31.356Z] + echo 'Install tini version fec3683b971d9c3ef73f284f176672c44b448662'
17:39:31 [2020-03-30T17:39:31.356Z] + git clone https://github.com/krallin/tini.git /tmp/tmp.qLSMWM2WFm/tini
17:39:31 [2020-03-30T17:39:31.356Z] Cloning into '/tmp/tmp.qLSMWM2WFm/tini'...
17:39:31 [2020-03-30T17:39:31.356Z] Install tini version fec3683b971d9c3ef73f284f176672c44b448662
17:39:31 [2020-03-30T17:39:31.356Z] + cd /tmp/tmp.qLSMWM2WFm/tini
17:39:31 [2020-03-30T17:39:31.356Z] + git checkout -q fec3683b971d9c3ef73f284f176672c44b448662
17:39:31 [2020-03-30T17:39:31.356Z] + cmake .
17:39:31 [2020-03-30T17:39:31.356Z] -- The C compiler identification is GNU 8.3.0
17:39:31 [2020-03-30T17:39:31.356Z] -- Check for working C compiler: /usr/bin/cc
17:39:31 [2020-03-30T17:39:31.712Z] -- Check for working C compiler: /usr/bin/cc -- works
17:39:31 [2020-03-30T17:39:31.712Z] -- Detecting C compiler ABI info
17:39:31 [2020-03-30T17:39:31.712Z] -- Detecting C compiler ABI info - done
17:39:31 [2020-03-30T17:39:31.712Z] -- Detecting C compile features
17:39:31 [2020-03-30T17:39:31.712Z] -- Detecting C compile features - done
17:39:31 [2020-03-30T17:39:31.712Z] -- Performing Test HAS_BUILTIN_FORTIFY
17:39:31 [2020-03-30T17:39:31.712Z] -- Performing Test HAS_BUILTIN_FORTIFY - Failed
17:39:31 [2020-03-30T17:39:31.712Z] -- Configuring done
17:39:31 [2020-03-30T17:39:31.712Z] -- Generating done
17:39:31 [2020-03-30T17:39:31.712Z] -- Build files have been written to: /tmp/tmp.qLSMWM2WFm/tini
17:39:31 [2020-03-30T17:39:31.712Z] + make tini-static
17:39:32 [2020-03-30T17:39:32.069Z] Scanning dependencies of target tini-static
17:39:32 [2020-03-30T17:39:32.069Z] [ 50%] Building C object CMakeFiles/tini-static.dir/src/tini.c.o
17:39:32 [2020-03-30T17:39:32.069Z] [100%] Linking C executable tini-static
17:39:32 [2020-03-30T17:39:32.069Z] [100%] Built target tini-static
17:39:32 [2020-03-30T17:39:32.069Z] + mkdir -p /build
17:39:32 [2020-03-30T17:39:32.069Z] + cp tini-static /build/docker-init
17:39:32 [2020-03-30T17:39:32.829Z] Removing intermediate container 9f16cb860b45
17:39:32 [2020-03-30T17:39:32.829Z]  ---> 0421360aad0c
17:39:32 [2020-03-30T17:39:32.829Z] Step 100/140 : FROM dev-base AS rootlesskit
17:39:32 [2020-03-30T17:39:32.829Z]  ---> 5ab3df366e56
17:39:32 [2020-03-30T17:39:32.829Z] Step 101/140 : ENV INSTALL_BINARY_NAME=rootlesskit
17:39:32 [2020-03-30T17:39:32.829Z]  ---> Running in 2e5e4608fa34
17:39:32 [2020-03-30T17:39:32.829Z] Removing intermediate container 2e5e4608fa34
17:39:32 [2020-03-30T17:39:32.829Z]  ---> 550ab0341b3c
17:39:32 [2020-03-30T17:39:32.829Z] Step 102/140 : ARG ROOTLESSKIT_COMMIT
17:39:32 [2020-03-30T17:39:32.829Z]  ---> Running in 37dfc998a378
17:39:33 [2020-03-30T17:39:33.177Z] Removing intermediate container 37dfc998a378
17:39:33 [2020-03-30T17:39:33.177Z]  ---> ef4f0cbff7d1
17:39:33 [2020-03-30T17:39:33.177Z] Step 103/140 : COPY hack/dockerfile/install/install.sh ./install.sh
17:39:33 [2020-03-30T17:39:33.524Z]  ---> 024787021ea1
17:39:33 [2020-03-30T17:39:33.524Z] Step 104/140 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
17:39:33 [2020-03-30T17:39:33.524Z]  ---> 2bb19dda7b31
17:39:33 [2020-03-30T17:39:33.524Z] Step 105/140 : RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME
17:39:33 [2020-03-30T17:39:33.868Z]  ---> Running in b2ff407ab13a
17:39:34 [2020-03-30T17:39:34.214Z] + RM_GOPATH=0
17:39:34 [2020-03-30T17:39:34.214Z] + TMP_GOPATH=
17:39:34 [2020-03-30T17:39:34.214Z] + : /build/
17:39:34 [2020-03-30T17:39:34.214Z] + '[' -z '' ']'
17:39:34 [2020-03-30T17:39:34.214Z] ++ mktemp -d
17:39:34 [2020-03-30T17:39:34.214Z] + export GOPATH=/tmp/tmp.juE1Cbd5BJ
17:39:34 [2020-03-30T17:39:34.214Z] + GOPATH=/tmp/tmp.juE1Cbd5BJ
17:39:34 [2020-03-30T17:39:34.214Z] + RM_GOPATH=1
17:39:34 [2020-03-30T17:39:34.214Z] ++ dirname ./install.sh
17:39:34 [2020-03-30T17:39:34.214Z] + dir=.
17:39:34 [2020-03-30T17:39:34.214Z] + bin=rootlesskit
17:39:34 [2020-03-30T17:39:34.214Z] + shift
17:39:34 [2020-03-30T17:39:34.214Z] + '[' '!' -f ./rootlesskit.installer ']'
17:39:34 [2020-03-30T17:39:34.214Z] + . ./rootlesskit.installer
17:39:34 [2020-03-30T17:39:34.214Z] ++ : 76c4e26750da3986fa0e741464fbf0fcd55bea71
17:39:34 [2020-03-30T17:39:34.214Z] + install_rootlesskit
17:39:34 [2020-03-30T17:39:34.214Z] + case "$1" in
17:39:34 [2020-03-30T17:39:34.214Z] + export CGO_ENABLED=0
17:39:34 [2020-03-30T17:39:34.214Z] + CGO_ENABLED=0
17:39:34 [2020-03-30T17:39:34.214Z] + _install_rootlesskit
17:39:34 [2020-03-30T17:39:34.214Z] + echo 'Install rootlesskit version 76c4e26750da3986fa0e741464fbf0fcd55bea71'
17:39:34 [2020-03-30T17:39:34.214Z] + git clone https://github.com/rootless-containers/rootlesskit.git /tmp/tmp.juE1Cbd5BJ/src/github.com/rootless-containers/rootlesskit
17:39:34 [2020-03-30T17:39:34.214Z] Cloning into '/tmp/tmp.juE1Cbd5BJ/src/github.com/rootless-containers/rootlesskit'...
17:39:34 [2020-03-30T17:39:34.214Z] Install rootlesskit version 76c4e26750da3986fa0e741464fbf0fcd55bea71
17:39:34 [2020-03-30T17:39:34.965Z] + cd /tmp/tmp.juE1Cbd5BJ/src/github.com/rootless-containers/rootlesskit
17:39:34 [2020-03-30T17:39:34.965Z] + git checkout -q 76c4e26750da3986fa0e741464fbf0fcd55bea71
17:39:34 [2020-03-30T17:39:34.965Z] + for f in rootlesskit rootlesskit-docker-proxy
17:39:34 [2020-03-30T17:39:34.965Z] + go build -ldflags= -o /build//rootlesskit github.com/rootless-containers/rootlesskit/cmd/rootlesskit
17:39:39 [2020-03-30T17:39:39.952Z] + for f in rootlesskit rootlesskit-docker-proxy
17:39:39 [2020-03-30T17:39:39.952Z] + go build -ldflags= -o /build//rootlesskit-docker-proxy github.com/rootless-containers/rootlesskit/cmd/rootlesskit-docker-proxy
17:39:42 [2020-03-30T17:39:42.108Z] Removing intermediate container b2ff407ab13a
17:39:42 [2020-03-30T17:39:42.108Z]  ---> 8155fa9933ae
17:39:42 [2020-03-30T17:39:42.108Z] Step 106/140 : COPY ./contrib/dockerd-rootless.sh /build
17:39:42 [2020-03-30T17:39:42.511Z]  ---> a57bd2de01df
17:39:42 [2020-03-30T17:39:42.511Z] Step 107/140 : FROM djs55/vpnkit@sha256:${VPNKIT_DIGEST} AS vpnkit
17:39:42 [2020-03-30T17:39:42.511Z] sha256:e508a17cfacc8fd39261d5b4e397df2b953690da577e2c987a47630cd0c42f8e: Pulling from djs55/vpnkit
17:39:42 [2020-03-30T17:39:42.511Z] bad55c542dc9: Pulling fs layer
17:39:42 [2020-03-30T17:39:42.894Z] bad55c542dc9: Verifying Checksum
17:39:42 [2020-03-30T17:39:42.894Z] bad55c542dc9: Download complete
17:39:43 [2020-03-30T17:39:43.251Z] bad55c542dc9: Pull complete
17:39:43 [2020-03-30T17:39:43.251Z] Digest: sha256:e508a17cfacc8fd39261d5b4e397df2b953690da577e2c987a47630cd0c42f8e
17:39:43 [2020-03-30T17:39:43.251Z] Status: Downloaded newer image for djs55/vpnkit@sha256:e508a17cfacc8fd39261d5b4e397df2b953690da577e2c987a47630cd0c42f8e
17:39:43 [2020-03-30T17:39:43.251Z]  ---> e49efe6f0050
17:39:43 [2020-03-30T17:39:43.251Z] Step 108/140 : FROM runtime-dev AS dev
17:39:43 [2020-03-30T17:39:43.251Z]  ---> d93c1c43df9d
17:39:43 [2020-03-30T17:39:43.251Z] Step 109/140 : ARG DEBIAN_FRONTEND
17:39:43 [2020-03-30T17:39:43.599Z]  ---> Running in 05e20069d507
17:39:43 [2020-03-30T17:39:43.599Z] Removing intermediate container 05e20069d507
17:39:43 [2020-03-30T17:39:43.599Z]  ---> cba49f8565c6
17:39:43 [2020-03-30T17:39:43.599Z] Step 110/140 : RUN groupadd -r docker
17:39:43 [2020-03-30T17:39:43.599Z]  ---> Running in 74b782495cf2
17:39:44 [2020-03-30T17:39:44.793Z] Removing intermediate container 74b782495cf2
17:39:44 [2020-03-30T17:39:44.793Z]  ---> e58d3d1b7c78
17:39:44 [2020-03-30T17:39:44.793Z] Step 111/140 : RUN useradd --create-home --gid docker unprivilegeduser
17:39:44 [2020-03-30T17:39:44.793Z]  ---> Running in 1f8481227454
17:39:46 [2020-03-30T17:39:46.015Z] Removing intermediate container 1f8481227454
17:39:46 [2020-03-30T17:39:46.015Z]  ---> 089031bf6961
17:39:46 [2020-03-30T17:39:46.015Z] Step 112/140 : RUN ln -sfv /go/src/github.com/docker/docker/.bashrc ~/.bashrc
17:39:46 [2020-03-30T17:39:46.016Z]  ---> Running in de389b079e26
17:39:46 [2020-03-30T17:39:46.369Z] '/root/.bashrc' -> '/go/src/github.com/docker/docker/.bashrc'
17:39:47 [2020-03-30T17:39:47.123Z] Removing intermediate container de389b079e26
17:39:47 [2020-03-30T17:39:47.123Z]  ---> 4078703127f7
17:39:47 [2020-03-30T17:39:47.123Z] Step 113/140 : RUN echo "source /usr/share/bash-completion/bash_completion" >> /etc/bash.bashrc
17:39:47 [2020-03-30T17:39:47.123Z]  ---> Running in cf76d3c35cea
17:39:48 [2020-03-30T17:39:48.339Z] Removing intermediate container cf76d3c35cea
17:39:48 [2020-03-30T17:39:48.339Z]  ---> ea129b7f2741
17:39:48 [2020-03-30T17:39:48.339Z] Step 114/140 : RUN ln -s /usr/local/completion/bash/docker /etc/bash_completion.d/docker
17:39:48 [2020-03-30T17:39:48.339Z]  ---> Running in 53ef36ce7e64
17:39:49 [2020-03-30T17:39:49.090Z] Removing intermediate container 53ef36ce7e64
17:39:49 [2020-03-30T17:39:49.090Z]  ---> cabd68233e55
17:39:49 [2020-03-30T17:39:49.090Z] Step 115/140 : RUN ldconfig
17:39:49 [2020-03-30T17:39:49.090Z]  ---> Running in 7d46ffaf3c25
17:39:50 [2020-03-30T17:39:50.449Z] Removing intermediate container 7d46ffaf3c25
17:39:50 [2020-03-30T17:39:50.449Z]  ---> 786b9f503a9a
17:39:50 [2020-03-30T17:39:50.449Z] Step 116/140 : RUN apt-get update && apt-get install -y --no-install-recommends         apparmor         aufs-tools         bash-completion         binutils-mingw-w64         libbtrfs-dev         bzip2         g++-mingw-w64-x86-64         iptables         jq         libcap2-bin         libdevmapper-dev         libnet1         libnl-3-200         libprotobuf-c1         libsystemd-dev         libudev-dev         net-tools         pigz         python3-pip         python3-setuptools         python3-wheel         thin-provisioning-tools         vim         vim-common         xfsprogs         xz-utils         zip     && rm -rf /var/lib/apt/lists/*
17:39:50 [2020-03-30T17:39:50.449Z]  ---> Running in d3976a4a30fd
17:39:50 [2020-03-30T17:39:50.927Z] Get:1 http://cdn-fastly.deb.debian.org/debian buster InRelease [122 kB]
17:39:50 [2020-03-30T17:39:50.927Z] Get:2 http://cdn-fastly.deb.debian.org/debian-security buster/updates InRelease [65.4 kB]
17:39:50 [2020-03-30T17:39:50.927Z] Get:3 http://cdn-fastly.deb.debian.org/debian buster-updates InRelease [49.3 kB]
17:39:51 [2020-03-30T17:39:51.306Z] Get:4 http://cdn-fastly.deb.debian.org/debian buster/main s390x Packages [7624 kB]
17:39:51 [2020-03-30T17:39:51.306Z] Get:5 http://cdn-fastly.deb.debian.org/debian-security buster/updates/main s390x Packages [165 kB]
17:39:51 [2020-03-30T17:39:51.694Z] Get:6 http://cdn-fastly.deb.debian.org/debian buster-updates/main s390x Packages [7380 B]
17:39:52 [2020-03-30T17:39:52.466Z] Fetched 8032 kB in 1s (5777 kB/s)
17:39:52 [2020-03-30T17:39:52.823Z] Reading package lists...
17:39:53 [2020-03-30T17:39:53.281Z] Reading package lists...
17:39:53 [2020-03-30T17:39:53.281Z] Building dependency tree...
17:39:53 [2020-03-30T17:39:53.281Z] Reading state information...
17:39:53 [2020-03-30T17:39:53.281Z] libcap2-bin is already the newest version (1:2.25-2).
17:39:53 [2020-03-30T17:39:53.281Z] libcap2-bin set to manually installed.
17:39:53 [2020-03-30T17:39:53.281Z] The following additional packages will be installed:
17:39:53 [2020-03-30T17:39:53.281Z]   binutils-mingw-w64-i686 binutils-mingw-w64-x86-64 dmsetup gcc-mingw-w64-base
17:39:53 [2020-03-30T17:39:53.281Z]   gcc-mingw-w64-x86-64 libaio1 libbtrfs0 libdevmapper-event1.02.1
17:39:53 [2020-03-30T17:39:53.281Z]   libdevmapper1.02.1 libgpm2 libicu63 libip4tc0 libip6tc0 libiptc0 libjq1
17:39:53 [2020-03-30T17:39:53.281Z]   libmpdec2 libnetfilter-conntrack3 libnfnetlink0 libnftnl11 libonig5
17:39:53 [2020-03-30T17:39:53.281Z]   libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpython3-stdlib
17:39:53 [2020-03-30T17:39:53.281Z]   libpython3.7-minimal libpython3.7-stdlib libreadline5 libselinux1-dev
17:39:53 [2020-03-30T17:39:53.281Z]   libsepol1-dev libsystemd0 libudev1 mingw-w64-common mingw-w64-x86-64-dev
17:39:53 [2020-03-30T17:39:53.281Z]   python-pip-whl python3 python3-distutils python3-lib2to3 python3-minimal
17:39:53 [2020-03-30T17:39:53.281Z]   python3-pkg-resources python3.7 python3.7-minimal vim-runtime xxd
17:39:53 [2020-03-30T17:39:53.281Z] Suggested packages:
17:39:53 [2020-03-30T17:39:53.281Z]   apparmor-profiles-extra apparmor-utils bzip2-doc gcc-8-locales kmod gpm
17:39:53 [2020-03-30T17:39:53.281Z]   wine64 python3-doc python3-tk python3-venv python-setuptools-doc
17:39:53 [2020-03-30T17:39:53.281Z]   python3.7-venv python3.7-doc binfmt-support ctags vim-doc vim-scripts
17:39:53 [2020-03-30T17:39:53.281Z]   xfsdump acl attr quota
17:39:53 [2020-03-30T17:39:53.281Z] Recommended packages:
17:39:53 [2020-03-30T17:39:53.281Z]   aufs-dkms nftables build-essential python3-dev python3-keyring
17:39:53 [2020-03-30T17:39:53.281Z]   python3-keyrings.alt python3-xdg unzip
17:39:53 [2020-03-30T17:39:53.784Z] The following NEW packages will be installed:
17:39:53 [2020-03-30T17:39:53.784Z]   apparmor aufs-tools bash-completion binutils-mingw-w64
17:39:53 [2020-03-30T17:39:53.784Z]   binutils-mingw-w64-i686 binutils-mingw-w64-x86-64 bzip2 dmsetup
17:39:53 [2020-03-30T17:39:53.784Z]   g++-mingw-w64-x86-64 gcc-mingw-w64-base gcc-mingw-w64-x86-64 iptables jq
17:39:53 [2020-03-30T17:39:53.784Z]   libaio1 libbtrfs-dev libbtrfs0 libdevmapper-dev libdevmapper-event1.02.1
17:39:53 [2020-03-30T17:39:53.784Z]   libdevmapper1.02.1 libgpm2 libicu63 libip4tc0 libip6tc0 libiptc0 libjq1
17:39:53 [2020-03-30T17:39:53.784Z]   libmpdec2 libnet1 libnetfilter-conntrack3 libnfnetlink0 libnftnl11
17:39:53 [2020-03-30T17:39:53.784Z]   libnl-3-200 libonig5 libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5
17:39:53 [2020-03-30T17:39:53.784Z]   libprotobuf-c1 libpython3-stdlib libpython3.7-minimal libpython3.7-stdlib
17:39:53 [2020-03-30T17:39:53.784Z]   libreadline5 libselinux1-dev libsepol1-dev libsystemd-dev libudev-dev
17:39:53 [2020-03-30T17:39:53.784Z]   mingw-w64-common mingw-w64-x86-64-dev net-tools pigz python-pip-whl python3
17:39:53 [2020-03-30T17:39:53.784Z]   python3-distutils python3-lib2to3 python3-minimal python3-pip
17:39:53 [2020-03-30T17:39:53.784Z]   python3-pkg-resources python3-setuptools python3-wheel python3.7
17:39:53 [2020-03-30T17:39:53.784Z]   python3.7-minimal thin-provisioning-tools vim vim-common vim-runtime
17:39:53 [2020-03-30T17:39:53.784Z]   xfsprogs xxd xz-utils zip
17:39:53 [2020-03-30T17:39:53.784Z] The following packages will be upgraded:
17:39:53 [2020-03-30T17:39:53.784Z]   libsystemd0 libudev1
17:39:54 [2020-03-30T17:39:54.139Z] 2 upgraded, 68 newly installed, 0 to remove and 12 not upgraded.
17:39:54 [2020-03-30T17:39:54.139Z] Need to get 99.7 MB of archives.
17:39:54 [2020-03-30T17:39:54.139Z] After this operation, 605 MB of additional disk space will be used.
17:39:54 [2020-03-30T17:39:54.139Z] Get:1 http://cdn-fastly.deb.debian.org/debian buster/main s390x libsystemd0 s390x 241-7~deb10u3 [306 kB]
17:39:54 [2020-03-30T17:39:54.493Z] Get:2 http://cdn-fastly.deb.debian.org/debian buster/main s390x pigz s390x 2.4-1 [52.8 kB]
17:39:54 [2020-03-30T17:39:54.493Z] Get:3 http://cdn-fastly.deb.debian.org/debian buster/main s390x libpython3.7-minimal s390x 3.7.3-2+deb10u1 [586 kB]
17:39:54 [2020-03-30T17:39:54.493Z] Get:4 http://cdn-fastly.deb.debian.org/debian buster/main s390x python3.7-minimal s390x 3.7.3-2+deb10u1 [1590 kB]
17:39:54 [2020-03-30T17:39:54.493Z] Get:5 http://cdn-fastly.deb.debian.org/debian buster/main s390x python3-minimal s390x 3.7.3-1 [36.6 kB]
17:39:54 [2020-03-30T17:39:54.493Z] Get:6 http://cdn-fastly.deb.debian.org/debian buster/main s390x libmpdec2 s390x 2.4.2-2 [83.3 kB]
17:39:54 [2020-03-30T17:39:54.493Z] Get:7 http://cdn-fastly.deb.debian.org/debian buster/main s390x libpython3.7-stdlib s390x 3.7.3-2+deb10u1 [1683 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:8 http://cdn-fastly.deb.debian.org/debian buster/main s390x python3.7 s390x 3.7.3-2+deb10u1 [330 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:9 http://cdn-fastly.deb.debian.org/debian buster/main s390x libpython3-stdlib s390x 3.7.3-1 [20.0 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:10 http://cdn-fastly.deb.debian.org/debian buster/main s390x python3 s390x 3.7.3-1 [61.5 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:11 http://cdn-fastly.deb.debian.org/debian buster/main s390x libudev1 s390x 241-7~deb10u3 [144 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:12 http://cdn-fastly.deb.debian.org/debian buster/main s390x libip4tc0 s390x 1.8.2-4 [69.5 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:13 http://cdn-fastly.deb.debian.org/debian buster/main s390x libip6tc0 s390x 1.8.2-4 [69.8 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:14 http://cdn-fastly.deb.debian.org/debian buster/main s390x libiptc0 s390x 1.8.2-4 [59.6 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:15 http://cdn-fastly.deb.debian.org/debian buster/main s390x libnfnetlink0 s390x 1.0.1-3+b1 [13.7 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:16 http://cdn-fastly.deb.debian.org/debian buster/main s390x libnetfilter-conntrack3 s390x 1.0.7-1 [39.0 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:17 http://cdn-fastly.deb.debian.org/debian buster/main s390x libnftnl11 s390x 1.1.2-2 [50.6 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:18 http://cdn-fastly.deb.debian.org/debian buster/main s390x iptables s390x 1.8.2-4 [379 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:19 http://cdn-fastly.deb.debian.org/debian buster/main s390x xxd s390x 2:8.1.0875-5 [139 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:20 http://cdn-fastly.deb.debian.org/debian buster/main s390x vim-common all 2:8.1.0875-5 [195 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:21 http://cdn-fastly.deb.debian.org/debian buster/main s390x bash-completion all 1:2.8-6 [208 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:22 http://cdn-fastly.deb.debian.org/debian buster/main s390x bzip2 s390x 1.0.6-9.2~deb10u1 [47.8 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:23 http://cdn-fastly.deb.debian.org/debian buster/main s390x xz-utils s390x 5.2.4-1 [181 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:24 http://cdn-fastly.deb.debian.org/debian buster/main s390x apparmor s390x 2.13.2-10 [529 kB]
17:39:54 [2020-03-30T17:39:54.847Z] Get:25 http://cdn-fastly.deb.debian.org/debian buster/main s390x aufs-tools s390x 1:4.14+20190211-1 [104 kB]
17:39:55 [2020-03-30T17:39:55.210Z] Get:26 http://cdn-fastly.deb.debian.org/debian buster/main s390x binutils-mingw-w64-i686 s390x 2.31.1-11+8.3 [2161 kB]
17:39:55 [2020-03-30T17:39:55.210Z] Get:27 http://cdn-fastly.deb.debian.org/debian buster/main s390x binutils-mingw-w64-x86-64 s390x 2.31.1-11+8.3 [2517 kB]
17:39:55 [2020-03-30T17:39:55.210Z] Get:28 http://cdn-fastly.deb.debian.org/debian buster/main s390x binutils-mingw-w64 all 2.31.1-11+8.3 [138 kB]
17:39:55 [2020-03-30T17:39:55.210Z] Get:29 http://cdn-fastly.deb.debian.org/debian buster/main s390x libdevmapper1.02.1 s390x 2:1.02.155-3 [135 kB]
17:39:55 [2020-03-30T17:39:55.210Z] Get:30 http://cdn-fastly.deb.debian.org/debian buster/main s390x dmsetup s390x 2:1.02.155-3 [89.2 kB]
17:39:55 [2020-03-30T17:39:55.210Z] Get:31 http://cdn-fastly.deb.debian.org/debian buster/main s390x mingw-w64-common all 6.0.0-3 [4910 kB]
17:39:55 [2020-03-30T17:39:55.210Z] Get:32 http://cdn-fastly.deb.debian.org/debian buster/main s390x mingw-w64-x86-64-dev all 6.0.0-3 [3454 kB]
17:39:55 [2020-03-30T17:39:55.210Z] Get:33 http://cdn-fastly.deb.debian.org/debian buster/main s390x gcc-mingw-w64-base s390x 8.3.0-6+21.3~deb10u1 [175 kB]
17:39:55 [2020-03-30T17:39:55.210Z] Get:34 http://cdn-fastly.deb.debian.org/debian buster/main s390x gcc-mingw-w64-x86-64 s390x 8.3.0-6+21.3~deb10u1 [33.3 MB]
17:39:55 [2020-03-30T17:39:55.580Z] Get:35 http://cdn-fastly.deb.debian.org/debian buster/main s390x g++-mingw-w64-x86-64 s390x 8.3.0-6+21.3~deb10u1 [24.0 MB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:36 http://cdn-fastly.deb.debian.org/debian buster/main s390x libonig5 s390x 6.9.1-1 [165 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:37 http://cdn-fastly.deb.debian.org/debian buster/main s390x libjq1 s390x 1.5+dfsg-2+b1 [125 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:38 http://cdn-fastly.deb.debian.org/debian buster/main s390x jq s390x 1.5+dfsg-2+b1 [59.5 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:39 http://cdn-fastly.deb.debian.org/debian buster/main s390x libaio1 s390x 0.3.112-3 [11.1 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:40 http://cdn-fastly.deb.debian.org/debian buster/main s390x libbtrfs0 s390x 4.20.1-2 [41.6 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:41 http://cdn-fastly.deb.debian.org/debian buster/main s390x libbtrfs-dev s390x 4.20.1-2 [76.9 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:42 http://cdn-fastly.deb.debian.org/debian buster/main s390x libdevmapper-event1.02.1 s390x 2:1.02.155-3 [22.3 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:43 http://cdn-fastly.deb.debian.org/debian buster/main s390x libudev-dev s390x 241-7~deb10u3 [109 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:44 http://cdn-fastly.deb.debian.org/debian buster/main s390x libsepol1-dev s390x 2.8-1 [313 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:45 http://cdn-fastly.deb.debian.org/debian buster/main s390x libpcre16-3 s390x 2:8.39-12 [188 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:46 http://cdn-fastly.deb.debian.org/debian buster/main s390x libpcre32-3 s390x 2:8.39-12 [183 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:47 http://cdn-fastly.deb.debian.org/debian buster/main s390x libpcrecpp0v5 s390x 2:8.39-12 [151 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:48 http://cdn-fastly.deb.debian.org/debian buster/main s390x libpcre3-dev s390x 2:8.39-12 [481 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:49 http://cdn-fastly.deb.debian.org/debian buster/main s390x libselinux1-dev s390x 2.8-1+b1 [165 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:50 http://cdn-fastly.deb.debian.org/debian buster/main s390x libdevmapper-dev s390x 2:1.02.155-3 [51.4 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:51 http://cdn-fastly.deb.debian.org/debian buster/main s390x libgpm2 s390x 1.20.7-5 [35.2 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:52 http://cdn-fastly.deb.debian.org/debian-security buster/updates/main s390x libicu63 s390x 63.1-6+deb10u1 [8035 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:53 http://cdn-fastly.deb.debian.org/debian buster/main s390x libnet1 s390x 1.1.6+dfsg-3.1 [55.8 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:54 http://cdn-fastly.deb.debian.org/debian buster/main s390x libnl-3-200 s390x 3.4.0-1 [59.8 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:55 http://cdn-fastly.deb.debian.org/debian buster/main s390x libprotobuf-c1 s390x 1.3.1-1+b1 [26.4 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:56 http://cdn-fastly.deb.debian.org/debian buster/main s390x libreadline5 s390x 5.2+dfsg-3+b13 [114 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:57 http://cdn-fastly.deb.debian.org/debian buster/main s390x libsystemd-dev s390x 241-7~deb10u3 [321 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:58 http://cdn-fastly.deb.debian.org/debian buster/main s390x net-tools s390x 1.60+git20180626.aebd88e-1 [242 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:59 http://cdn-fastly.deb.debian.org/debian buster/main s390x python-pip-whl all 18.1-5 [1591 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:60 http://cdn-fastly.deb.debian.org/debian buster/main s390x python3-lib2to3 all 3.7.3-1 [76.7 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:61 http://cdn-fastly.deb.debian.org/debian buster/main s390x python3-distutils all 3.7.3-1 [142 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:62 http://cdn-fastly.deb.debian.org/debian buster/main s390x python3-pip all 18.1-5 [171 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:63 http://cdn-fastly.deb.debian.org/debian buster/main s390x python3-pkg-resources all 40.8.0-1 [153 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:64 http://cdn-fastly.deb.debian.org/debian buster/main s390x python3-setuptools all 40.8.0-1 [306 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:65 http://cdn-fastly.deb.debian.org/debian buster/main s390x python3-wheel all 0.32.3-2 [19.4 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:66 http://cdn-fastly.deb.debian.org/debian buster/main s390x thin-provisioning-tools s390x 0.7.6-2.1 [314 kB]
17:39:55 [2020-03-30T17:39:55.943Z] Get:67 http://cdn-fastly.deb.debian.org/debian buster/main s390x vim-runtime all 2:8.1.0875-5 [5775 kB]
17:39:56 [2020-03-30T17:39:56.571Z] Get:68 http://cdn-fastly.deb.debian.org/debian buster/main s390x vim s390x 2:8.1.0875-5 [1188 kB]
17:39:56 [2020-03-30T17:39:56.571Z] Get:69 http://cdn-fastly.deb.debian.org/debian buster/main s390x xfsprogs s390x 4.20.0-1 [865 kB]
17:39:56 [2020-03-30T17:39:56.571Z] Get:70 http://cdn-fastly.deb.debian.org/debian buster/main s390x zip s390x 3.0-11+b1 [232 kB]
17:39:56 [2020-03-30T17:39:56.571Z] debconf: delaying package configuration, since apt-utils is not installed
17:39:56 [2020-03-30T17:39:56.571Z] Fetched 99.7 MB in 2s (42.8 MB/s)
17:39:56 [2020-03-30T17:39:56.571Z] (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15231 files and directories currently installed.)
17:39:56 [2020-03-30T17:39:56.571Z] Preparing to unpack .../libsystemd0_241-7~deb10u3_s390x.deb ...
17:39:56 [2020-03-30T17:39:56.571Z] Unpacking libsystemd0:s390x (241-7~deb10u3) over (241-7~deb10u2) ...
17:39:56 [2020-03-30T17:39:56.571Z] Setting up libsystemd0:s390x (241-7~deb10u3) ...
17:39:56 [2020-03-30T17:39:56.571Z] Selecting previously unselected package pigz.
17:39:56 [2020-03-30T17:39:56.571Z] (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15231 files and directories currently installed.)
17:39:56 [2020-03-30T17:39:56.571Z] Preparing to unpack .../archives/pigz_2.4-1_s390x.deb ...
17:39:56 [2020-03-30T17:39:56.571Z] Unpacking pigz (2.4-1) ...
17:39:56 [2020-03-30T17:39:56.571Z] Selecting previously unselected package libpython3.7-minimal:s390x.
17:39:56 [2020-03-30T17:39:56.571Z] Preparing to unpack .../libpython3.7-minimal_3.7.3-2+deb10u1_s390x.deb ...
17:39:56 [2020-03-30T17:39:56.571Z] Unpacking libpython3.7-minimal:s390x (3.7.3-2+deb10u1) ...
17:39:56 [2020-03-30T17:39:56.571Z] Selecting previously unselected package python3.7-minimal.
17:39:56 [2020-03-30T17:39:56.571Z] Preparing to unpack .../python3.7-minimal_3.7.3-2+deb10u1_s390x.deb ...
17:39:56 [2020-03-30T17:39:56.571Z] Unpacking python3.7-minimal (3.7.3-2+deb10u1) ...
17:39:56 [2020-03-30T17:39:56.919Z] Setting up libpython3.7-minimal:s390x (3.7.3-2+deb10u1) ...
17:39:56 [2020-03-30T17:39:56.919Z] Setting up python3.7-minimal (3.7.3-2+deb10u1) ...
17:39:57 [2020-03-30T17:39:57.274Z] Selecting previously unselected package python3-minimal.
17:39:57 [2020-03-30T17:39:57.274Z] (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15480 files and directories currently installed.)
17:39:57 [2020-03-30T17:39:57.274Z] Preparing to unpack .../python3-minimal_3.7.3-1_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.274Z] Unpacking python3-minimal (3.7.3-1) ...
17:39:57 [2020-03-30T17:39:57.274Z] Selecting previously unselected package libmpdec2:s390x.
17:39:57 [2020-03-30T17:39:57.274Z] Preparing to unpack .../libmpdec2_2.4.2-2_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.274Z] Unpacking libmpdec2:s390x (2.4.2-2) ...
17:39:57 [2020-03-30T17:39:57.274Z] Selecting previously unselected package libpython3.7-stdlib:s390x.
17:39:57 [2020-03-30T17:39:57.274Z] Preparing to unpack .../libpython3.7-stdlib_3.7.3-2+deb10u1_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.274Z] Unpacking libpython3.7-stdlib:s390x (3.7.3-2+deb10u1) ...
17:39:57 [2020-03-30T17:39:57.644Z] Selecting previously unselected package python3.7.
17:39:57 [2020-03-30T17:39:57.644Z] Preparing to unpack .../python3.7_3.7.3-2+deb10u1_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.644Z] Unpacking python3.7 (3.7.3-2+deb10u1) ...
17:39:57 [2020-03-30T17:39:57.644Z] Selecting previously unselected package libpython3-stdlib:s390x.
17:39:57 [2020-03-30T17:39:57.644Z] Preparing to unpack .../libpython3-stdlib_3.7.3-1_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.644Z] Unpacking libpython3-stdlib:s390x (3.7.3-1) ...
17:39:57 [2020-03-30T17:39:57.644Z] Setting up python3-minimal (3.7.3-1) ...
17:39:57 [2020-03-30T17:39:57.644Z] Selecting previously unselected package python3.
17:39:57 [2020-03-30T17:39:57.644Z] (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15892 files and directories currently installed.)
17:39:57 [2020-03-30T17:39:57.644Z] Preparing to unpack .../python3_3.7.3-1_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.644Z] Unpacking python3 (3.7.3-1) ...
17:39:57 [2020-03-30T17:39:57.644Z] Preparing to unpack .../libudev1_241-7~deb10u3_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.644Z] Unpacking libudev1:s390x (241-7~deb10u3) over (241-7~deb10u2) ...
17:39:57 [2020-03-30T17:39:57.644Z] Setting up libudev1:s390x (241-7~deb10u3) ...
17:39:57 [2020-03-30T17:39:57.644Z] Selecting previously unselected package libip4tc0:s390x.
17:39:57 [2020-03-30T17:39:57.644Z] (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15925 files and directories currently installed.)
17:39:57 [2020-03-30T17:39:57.644Z] Preparing to unpack .../00-libip4tc0_1.8.2-4_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.644Z] Unpacking libip4tc0:s390x (1.8.2-4) ...
17:39:57 [2020-03-30T17:39:57.999Z] Selecting previously unselected package libip6tc0:s390x.
17:39:57 [2020-03-30T17:39:57.999Z] Preparing to unpack .../01-libip6tc0_1.8.2-4_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.999Z] Unpacking libip6tc0:s390x (1.8.2-4) ...
17:39:57 [2020-03-30T17:39:57.999Z] Selecting previously unselected package libiptc0:s390x.
17:39:57 [2020-03-30T17:39:57.999Z] Preparing to unpack .../02-libiptc0_1.8.2-4_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.999Z] Unpacking libiptc0:s390x (1.8.2-4) ...
17:39:57 [2020-03-30T17:39:57.999Z] Selecting previously unselected package libnfnetlink0:s390x.
17:39:57 [2020-03-30T17:39:57.999Z] Preparing to unpack .../03-libnfnetlink0_1.0.1-3+b1_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.999Z] Unpacking libnfnetlink0:s390x (1.0.1-3+b1) ...
17:39:57 [2020-03-30T17:39:57.999Z] Selecting previously unselected package libnetfilter-conntrack3:s390x.
17:39:57 [2020-03-30T17:39:57.999Z] Preparing to unpack .../04-libnetfilter-conntrack3_1.0.7-1_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.999Z] Unpacking libnetfilter-conntrack3:s390x (1.0.7-1) ...
17:39:57 [2020-03-30T17:39:57.999Z] Selecting previously unselected package libnftnl11:s390x.
17:39:57 [2020-03-30T17:39:57.999Z] Preparing to unpack .../05-libnftnl11_1.1.2-2_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.999Z] Unpacking libnftnl11:s390x (1.1.2-2) ...
17:39:57 [2020-03-30T17:39:57.999Z] Selecting previously unselected package iptables.
17:39:57 [2020-03-30T17:39:57.999Z] Preparing to unpack .../06-iptables_1.8.2-4_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.999Z] Unpacking iptables (1.8.2-4) ...
17:39:57 [2020-03-30T17:39:57.999Z] Selecting previously unselected package xxd.
17:39:57 [2020-03-30T17:39:57.999Z] Preparing to unpack .../07-xxd_2%3a8.1.0875-5_s390x.deb ...
17:39:57 [2020-03-30T17:39:57.999Z] Unpacking xxd (2:8.1.0875-5) ...
17:39:57 [2020-03-30T17:39:57.999Z] Selecting previously unselected package vim-common.
17:39:57 [2020-03-30T17:39:57.999Z] Preparing to unpack .../08-vim-common_2%3a8.1.0875-5_all.deb ...
17:39:57 [2020-03-30T17:39:57.999Z] Unpacking vim-common (2:8.1.0875-5) ...
17:39:57 [2020-03-30T17:39:57.999Z] Selecting previously unselected package bash-completion.
17:39:57 [2020-03-30T17:39:57.999Z] Preparing to unpack .../09-bash-completion_1%3a2.8-6_all.deb ...
17:39:58 [2020-03-30T17:39:58.759Z] Unpacking bash-completion (1:2.8-6) ...
17:39:58 [2020-03-30T17:39:58.759Z] Selecting previously unselected package bzip2.
17:39:58 [2020-03-30T17:39:58.759Z] Preparing to unpack .../10-bzip2_1.0.6-9.2~deb10u1_s390x.deb ...
17:39:58 [2020-03-30T17:39:58.759Z] Unpacking bzip2 (1.0.6-9.2~deb10u1) ...
17:39:58 [2020-03-30T17:39:58.759Z] Selecting previously unselected package xz-utils.
17:39:58 [2020-03-30T17:39:58.759Z] Preparing to unpack .../11-xz-utils_5.2.4-1_s390x.deb ...
17:39:58 [2020-03-30T17:39:58.759Z] Unpacking xz-utils (5.2.4-1) ...
17:39:58 [2020-03-30T17:39:58.759Z] Selecting previously unselected package apparmor.
17:39:58 [2020-03-30T17:39:58.759Z] Preparing to unpack .../12-apparmor_2.13.2-10_s390x.deb ...
17:39:58 [2020-03-30T17:39:58.759Z] Unpacking apparmor (2.13.2-10) ...
17:39:58 [2020-03-30T17:39:58.759Z] Selecting previously unselected package aufs-tools.
17:39:58 [2020-03-30T17:39:58.759Z] Preparing to unpack .../13-aufs-tools_1%3a4.14+20190211-1_s390x.deb ...
17:39:58 [2020-03-30T17:39:58.759Z] Unpacking aufs-tools (1:4.14+20190211-1) ...
17:39:58 [2020-03-30T17:39:58.759Z] Selecting previously unselected package binutils-mingw-w64-i686.
17:39:58 [2020-03-30T17:39:58.759Z] Preparing to unpack .../14-binutils-mingw-w64-i686_2.31.1-11+8.3_s390x.deb ...
17:39:58 [2020-03-30T17:39:58.759Z] Unpacking binutils-mingw-w64-i686 (2.31.1-11+8.3) ...
17:39:59 [2020-03-30T17:39:59.140Z] Selecting previously unselected package binutils-mingw-w64-x86-64.
17:39:59 [2020-03-30T17:39:59.140Z] Preparing to unpack .../15-binutils-mingw-w64-x86-64_2.31.1-11+8.3_s390x.deb ...
17:39:59 [2020-03-30T17:39:59.140Z] Unpacking binutils-mingw-w64-x86-64 (2.31.1-11+8.3) ...
17:39:59 [2020-03-30T17:39:59.487Z] Selecting previously unselected package binutils-mingw-w64.
17:39:59 [2020-03-30T17:39:59.487Z] Preparing to unpack .../16-binutils-mingw-w64_2.31.1-11+8.3_all.deb ...
17:39:59 [2020-03-30T17:39:59.487Z] Unpacking binutils-mingw-w64 (2.31.1-11+8.3) ...
17:39:59 [2020-03-30T17:39:59.487Z] Selecting previously unselected package libdevmapper1.02.1:s390x.
17:39:59 [2020-03-30T17:39:59.487Z] Preparing to unpack .../17-libdevmapper1.02.1_2%3a1.02.155-3_s390x.deb ...
17:39:59 [2020-03-30T17:39:59.487Z] Unpacking libdevmapper1.02.1:s390x (2:1.02.155-3) ...
17:39:59 [2020-03-30T17:39:59.487Z] Selecting previously unselected package dmsetup.
17:39:59 [2020-03-30T17:39:59.487Z] Preparing to unpack .../18-dmsetup_2%3a1.02.155-3_s390x.deb ...
17:39:59 [2020-03-30T17:39:59.487Z] Unpacking dmsetup (2:1.02.155-3) ...
17:39:59 [2020-03-30T17:39:59.487Z] Selecting previously unselected package mingw-w64-common.
17:39:59 [2020-03-30T17:39:59.487Z] Preparing to unpack .../19-mingw-w64-common_6.0.0-3_all.deb ...
17:39:59 [2020-03-30T17:39:59.487Z] Unpacking mingw-w64-common (6.0.0-3) ...
17:40:00 [2020-03-30T17:40:00.247Z] Selecting previously unselected package mingw-w64-x86-64-dev.
17:40:00 [2020-03-30T17:40:00.247Z] Preparing to unpack .../20-mingw-w64-x86-64-dev_6.0.0-3_all.deb ...
17:40:00 [2020-03-30T17:40:00.247Z] Unpacking mingw-w64-x86-64-dev (6.0.0-3) ...
17:40:00 [2020-03-30T17:40:00.636Z] Selecting previously unselected package gcc-mingw-w64-base.
17:40:00 [2020-03-30T17:40:00.636Z] Preparing to unpack .../21-gcc-mingw-w64-base_8.3.0-6+21.3~deb10u1_s390x.deb ...
17:40:00 [2020-03-30T17:40:00.636Z] Unpacking gcc-mingw-w64-base (8.3.0-6+21.3~deb10u1) ...
17:40:00 [2020-03-30T17:40:00.636Z] Selecting previously unselected package gcc-mingw-w64-x86-64.
17:40:00 [2020-03-30T17:40:00.636Z] Preparing to unpack .../22-gcc-mingw-w64-x86-64_8.3.0-6+21.3~deb10u1_s390x.deb ...
17:40:00 [2020-03-30T17:40:00.636Z] Unpacking gcc-mingw-w64-x86-64 (8.3.0-6+21.3~deb10u1) ...
17:40:03 [2020-03-30T17:40:03.970Z] Selecting previously unselected package g++-mingw-w64-x86-64.
17:40:03 [2020-03-30T17:40:03.970Z] Preparing to unpack .../23-g++-mingw-w64-x86-64_8.3.0-6+21.3~deb10u1_s390x.deb ...
17:40:03 [2020-03-30T17:40:03.970Z] Unpacking g++-mingw-w64-x86-64 (8.3.0-6+21.3~deb10u1) ...
17:40:06 [2020-03-30T17:40:06.336Z] Selecting previously unselected package libonig5:s390x.
17:40:06 [2020-03-30T17:40:06.336Z] Preparing to unpack .../24-libonig5_6.9.1-1_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.336Z] Unpacking libonig5:s390x (6.9.1-1) ...
17:40:06 [2020-03-30T17:40:06.336Z] Selecting previously unselected package libjq1:s390x.
17:40:06 [2020-03-30T17:40:06.336Z] Preparing to unpack .../25-libjq1_1.5+dfsg-2+b1_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.336Z] Unpacking libjq1:s390x (1.5+dfsg-2+b1) ...
17:40:06 [2020-03-30T17:40:06.336Z] Selecting previously unselected package jq.
17:40:06 [2020-03-30T17:40:06.336Z] Preparing to unpack .../26-jq_1.5+dfsg-2+b1_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.336Z] Unpacking jq (1.5+dfsg-2+b1) ...
17:40:06 [2020-03-30T17:40:06.336Z] Selecting previously unselected package libaio1:s390x.
17:40:06 [2020-03-30T17:40:06.336Z] Preparing to unpack .../27-libaio1_0.3.112-3_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.336Z] Unpacking libaio1:s390x (0.3.112-3) ...
17:40:06 [2020-03-30T17:40:06.336Z] Selecting previously unselected package libbtrfs0.
17:40:06 [2020-03-30T17:40:06.336Z] Preparing to unpack .../28-libbtrfs0_4.20.1-2_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.336Z] Unpacking libbtrfs0 (4.20.1-2) ...
17:40:06 [2020-03-30T17:40:06.336Z] Selecting previously unselected package libbtrfs-dev.
17:40:06 [2020-03-30T17:40:06.336Z] Preparing to unpack .../29-libbtrfs-dev_4.20.1-2_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.336Z] Unpacking libbtrfs-dev (4.20.1-2) ...
17:40:06 [2020-03-30T17:40:06.336Z] Selecting previously unselected package libdevmapper-event1.02.1:s390x.
17:40:06 [2020-03-30T17:40:06.336Z] Preparing to unpack .../30-libdevmapper-event1.02.1_2%3a1.02.155-3_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.336Z] Unpacking libdevmapper-event1.02.1:s390x (2:1.02.155-3) ...
17:40:06 [2020-03-30T17:40:06.336Z] Selecting previously unselected package libudev-dev:s390x.
17:40:06 [2020-03-30T17:40:06.336Z] Preparing to unpack .../31-libudev-dev_241-7~deb10u3_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.336Z] Unpacking libudev-dev:s390x (241-7~deb10u3) ...
17:40:06 [2020-03-30T17:40:06.336Z] Selecting previously unselected package libsepol1-dev:s390x.
17:40:06 [2020-03-30T17:40:06.336Z] Preparing to unpack .../32-libsepol1-dev_2.8-1_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.336Z] Unpacking libsepol1-dev:s390x (2.8-1) ...
17:40:06 [2020-03-30T17:40:06.336Z] Selecting previously unselected package libpcre16-3:s390x.
17:40:06 [2020-03-30T17:40:06.698Z] Preparing to unpack .../33-libpcre16-3_2%3a8.39-12_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.698Z] Unpacking libpcre16-3:s390x (2:8.39-12) ...
17:40:06 [2020-03-30T17:40:06.698Z] Selecting previously unselected package libpcre32-3:s390x.
17:40:06 [2020-03-30T17:40:06.698Z] Preparing to unpack .../34-libpcre32-3_2%3a8.39-12_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.698Z] Unpacking libpcre32-3:s390x (2:8.39-12) ...
17:40:06 [2020-03-30T17:40:06.698Z] Selecting previously unselected package libpcrecpp0v5:s390x.
17:40:06 [2020-03-30T17:40:06.698Z] Preparing to unpack .../35-libpcrecpp0v5_2%3a8.39-12_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.698Z] Unpacking libpcrecpp0v5:s390x (2:8.39-12) ...
17:40:06 [2020-03-30T17:40:06.698Z] Selecting previously unselected package libpcre3-dev:s390x.
17:40:06 [2020-03-30T17:40:06.698Z] Preparing to unpack .../36-libpcre3-dev_2%3a8.39-12_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.698Z] Unpacking libpcre3-dev:s390x (2:8.39-12) ...
17:40:06 [2020-03-30T17:40:06.698Z] Selecting previously unselected package libselinux1-dev:s390x.
17:40:06 [2020-03-30T17:40:06.698Z] Preparing to unpack .../37-libselinux1-dev_2.8-1+b1_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.698Z] Unpacking libselinux1-dev:s390x (2.8-1+b1) ...
17:40:06 [2020-03-30T17:40:06.698Z] Selecting previously unselected package libdevmapper-dev:s390x.
17:40:06 [2020-03-30T17:40:06.698Z] Preparing to unpack .../38-libdevmapper-dev_2%3a1.02.155-3_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.698Z] Unpacking libdevmapper-dev:s390x (2:1.02.155-3) ...
17:40:06 [2020-03-30T17:40:06.698Z] Selecting previously unselected package libgpm2:s390x.
17:40:06 [2020-03-30T17:40:06.698Z] Preparing to unpack .../39-libgpm2_1.20.7-5_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.698Z] Unpacking libgpm2:s390x (1.20.7-5) ...
17:40:06 [2020-03-30T17:40:06.698Z] Selecting previously unselected package libicu63:s390x.
17:40:06 [2020-03-30T17:40:06.698Z] Preparing to unpack .../40-libicu63_63.1-6+deb10u1_s390x.deb ...
17:40:06 [2020-03-30T17:40:06.698Z] Unpacking libicu63:s390x (63.1-6+deb10u1) ...
17:40:07 [2020-03-30T17:40:07.450Z] Selecting previously unselected package libnet1:s390x.
17:40:07 [2020-03-30T17:40:07.450Z] Preparing to unpack .../41-libnet1_1.1.6+dfsg-3.1_s390x.deb ...
17:40:07 [2020-03-30T17:40:07.450Z] Unpacking libnet1:s390x (1.1.6+dfsg-3.1) ...
17:40:07 [2020-03-30T17:40:07.450Z] Selecting previously unselected package libnl-3-200:s390x.
17:40:07 [2020-03-30T17:40:07.450Z] Preparing to unpack .../42-libnl-3-200_3.4.0-1_s390x.deb ...
17:40:07 [2020-03-30T17:40:07.450Z] Unpacking libnl-3-200:s390x (3.4.0-1) ...
17:40:07 [2020-03-30T17:40:07.450Z] Selecting previously unselected package libprotobuf-c1:s390x.
17:40:07 [2020-03-30T17:40:07.450Z] Preparing to unpack .../43-libprotobuf-c1_1.3.1-1+b1_s390x.deb ...
17:40:07 [2020-03-30T17:40:07.450Z] Unpacking libprotobuf-c1:s390x (1.3.1-1+b1) ...
17:40:07 [2020-03-30T17:40:07.811Z] Selecting previously unselected package libreadline5:s390x.
17:40:07 [2020-03-30T17:40:07.811Z] Preparing to unpack .../44-libreadline5_5.2+dfsg-3+b13_s390x.deb ...
17:40:07 [2020-03-30T17:40:07.811Z] Unpacking libreadline5:s390x (5.2+dfsg-3+b13) ...
17:40:07 [2020-03-30T17:40:07.811Z] Selecting previously unselected package libsystemd-dev:s390x.
17:40:07 [2020-03-30T17:40:07.811Z] Preparing to unpack .../45-libsystemd-dev_241-7~deb10u3_s390x.deb ...
17:40:07 [2020-03-30T17:40:07.811Z] Unpacking libsystemd-dev:s390x (241-7~deb10u3) ...
17:40:07 [2020-03-30T17:40:07.811Z] Selecting previously unselected package net-tools.
17:40:07 [2020-03-30T17:40:07.811Z] Preparing to unpack .../46-net-tools_1.60+git20180626.aebd88e-1_s390x.deb ...
17:40:07 [2020-03-30T17:40:07.811Z] Unpacking net-tools (1.60+git20180626.aebd88e-1) ...
17:40:07 [2020-03-30T17:40:07.811Z] Selecting previously unselected package python-pip-whl.
17:40:07 [2020-03-30T17:40:07.811Z] Preparing to unpack .../47-python-pip-whl_18.1-5_all.deb ...
17:40:07 [2020-03-30T17:40:07.811Z] Unpacking python-pip-whl (18.1-5) ...
17:40:07 [2020-03-30T17:40:07.811Z] Selecting previously unselected package python3-lib2to3.
17:40:07 [2020-03-30T17:40:07.811Z] Preparing to unpack .../48-python3-lib2to3_3.7.3-1_all.deb ...
17:40:07 [2020-03-30T17:40:07.811Z] Unpacking python3-lib2to3 (3.7.3-1) ...
17:40:07 [2020-03-30T17:40:07.811Z] Selecting previously unselected package python3-distutils.
17:40:07 [2020-03-30T17:40:07.811Z] Preparing to unpack .../49-python3-distutils_3.7.3-1_all.deb ...
17:40:07 [2020-03-30T17:40:07.811Z] Unpacking python3-distutils (3.7.3-1) ...
17:40:08 [2020-03-30T17:40:08.169Z] Selecting previously unselected package python3-pip.
17:40:08 [2020-03-30T17:40:08.169Z] Preparing to unpack .../50-python3-pip_18.1-5_all.deb ...
17:40:08 [2020-03-30T17:40:08.169Z] Unpacking python3-pip (18.1-5) ...
17:40:08 [2020-03-30T17:40:08.169Z] Selecting previously unselected package python3-pkg-resources.
17:40:08 [2020-03-30T17:40:08.169Z] Preparing to unpack .../51-python3-pkg-resources_40.8.0-1_all.deb ...
17:40:08 [2020-03-30T17:40:08.169Z] Unpacking python3-pkg-resources (40.8.0-1) ...
17:40:08 [2020-03-30T17:40:08.169Z] Selecting previously unselected package python3-setuptools.
17:40:08 [2020-03-30T17:40:08.169Z] Preparing to unpack .../52-python3-setuptools_40.8.0-1_all.deb ...
17:40:08 [2020-03-30T17:40:08.169Z] Unpacking python3-setuptools (40.8.0-1) ...
17:40:08 [2020-03-30T17:40:08.169Z] Selecting previously unselected package python3-wheel.
17:40:08 [2020-03-30T17:40:08.169Z] Preparing to unpack .../53-python3-wheel_0.32.3-2_all.deb ...
17:40:08 [2020-03-30T17:40:08.169Z] Unpacking python3-wheel (0.32.3-2) ...
17:40:08 [2020-03-30T17:40:08.169Z] Selecting previously unselected package thin-provisioning-tools.
17:40:08 [2020-03-30T17:40:08.169Z] Preparing to unpack .../54-thin-provisioning-tools_0.7.6-2.1_s390x.deb ...
17:40:08 [2020-03-30T17:40:08.169Z] Unpacking thin-provisioning-tools (0.7.6-2.1) ...
17:40:08 [2020-03-30T17:40:08.169Z] Selecting previously unselected package vim-runtime.
17:40:08 [2020-03-30T17:40:08.169Z] Preparing to unpack .../55-vim-runtime_2%3a8.1.0875-5_all.deb ...
17:40:08 [2020-03-30T17:40:08.169Z] Adding 'diversion of /usr/share/vim/vim81/doc/help.txt to /usr/share/vim/vim81/doc/help.txt.vim-tiny by vim-runtime'
17:40:08 [2020-03-30T17:40:08.169Z] Adding 'diversion of /usr/share/vim/vim81/doc/tags to /usr/share/vim/vim81/doc/tags.vim-tiny by vim-runtime'
17:40:08 [2020-03-30T17:40:08.169Z] Unpacking vim-runtime (2:8.1.0875-5) ...
17:40:08 [2020-03-30T17:40:08.926Z] Selecting previously unselected package vim.
17:40:08 [2020-03-30T17:40:08.926Z] Preparing to unpack .../56-vim_2%3a8.1.0875-5_s390x.deb ...
17:40:08 [2020-03-30T17:40:08.926Z] Unpacking vim (2:8.1.0875-5) ...
17:40:08 [2020-03-30T17:40:08.926Z] Selecting previously unselected package xfsprogs.
17:40:08 [2020-03-30T17:40:08.926Z] Preparing to unpack .../57-xfsprogs_4.20.0-1_s390x.deb ...
17:40:08 [2020-03-30T17:40:08.926Z] Unpacking xfsprogs (4.20.0-1) ...
17:40:08 [2020-03-30T17:40:08.926Z] Selecting previously unselected package zip.
17:40:08 [2020-03-30T17:40:08.926Z] Preparing to unpack .../58-zip_3.0-11+b1_s390x.deb ...
17:40:08 [2020-03-30T17:40:08.926Z] Unpacking zip (3.0-11+b1) ...
17:40:08 [2020-03-30T17:40:08.926Z] Setting up libpcrecpp0v5:s390x (2:8.39-12) ...
17:40:08 [2020-03-30T17:40:08.926Z] Setting up aufs-tools (1:4.14+20190211-1) ...
17:40:08 [2020-03-30T17:40:08.926Z] Setting up net-tools (1.60+git20180626.aebd88e-1) ...
17:40:08 [2020-03-30T17:40:08.926Z] Setting up libip6tc0:s390x (1.8.2-4) ...
17:40:08 [2020-03-30T17:40:08.926Z] Setting up libreadline5:s390x (5.2+dfsg-3+b13) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up binutils-mingw-w64-x86-64 (2.31.1-11+8.3) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up libgpm2:s390x (1.20.7-5) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up libpcre16-3:s390x (2:8.39-12) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up libip4tc0:s390x (1.8.2-4) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up libsepol1-dev:s390x (2.8-1) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up libnftnl11:s390x (1.1.2-2) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up gcc-mingw-w64-base (8.3.0-6+21.3~deb10u1) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up libnet1:s390x (1.1.6+dfsg-3.1) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up bzip2 (1.0.6-9.2~deb10u1) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up libprotobuf-c1:s390x (1.3.1-1+b1) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up libicu63:s390x (63.1-6+deb10u1) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up xxd (2:8.1.0875-5) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up libbtrfs0 (4.20.1-2) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up zip (3.0-11+b1) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up vim-common (2:8.1.0875-5) ...
17:40:09 [2020-03-30T17:40:09.274Z] Setting up bash-completion (1:2.8-6) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up libiptc0:s390x (1.8.2-4) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up xz-utils (5.2.4-1) ...
17:40:09 [2020-03-30T17:40:09.624Z] update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
17:40:09 [2020-03-30T17:40:09.624Z] Setting up libpcre32-3:s390x (2:8.39-12) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up libudev-dev:s390x (241-7~deb10u3) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up binutils-mingw-w64-i686 (2.31.1-11+8.3) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up libbtrfs-dev (4.20.1-2) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up pigz (2.4-1) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up libnfnetlink0:s390x (1.0.1-3+b1) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up libnl-3-200:s390x (3.4.0-1) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up python-pip-whl (18.1-5) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up libmpdec2:s390x (2.4.2-2) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up mingw-w64-common (6.0.0-3) ...
17:40:09 [2020-03-30T17:40:09.624Z] Setting up vim-runtime (2:8.1.0875-5) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up libaio1:s390x (0.3.112-3) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up libsystemd-dev:s390x (241-7~deb10u3) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up libonig5:s390x (6.9.1-1) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up mingw-w64-x86-64-dev (6.0.0-3) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up libpython3.7-stdlib:s390x (3.7.3-2+deb10u1) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up vim (2:8.1.0875-5) ...
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vim (vim) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vimdiff (vimdiff) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rvim (rvim) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rview (rview) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vi (vi) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/view (view) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/ex (ex) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/editor (editor) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] Setting up libjq1:s390x (1.5+dfsg-2+b1) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up libpcre3-dev:s390x (2:8.39-12) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up gcc-mingw-w64-x86-64 (8.3.0-6+21.3~deb10u1) ...
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/x86_64-w64-mingw32-gcc-posix to provide /usr/bin/x86_64-w64-mingw32-gcc (x86_64-w64-mingw32-gcc) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/x86_64-w64-mingw32-gcc-win32 to provide /usr/bin/x86_64-w64-mingw32-gcc (x86_64-w64-mingw32-gcc) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] Setting up g++-mingw-w64-x86-64 (8.3.0-6+21.3~deb10u1) ...
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/x86_64-w64-mingw32-g++-posix to provide /usr/bin/x86_64-w64-mingw32-g++ (x86_64-w64-mingw32-g++) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] update-alternatives: using /usr/bin/x86_64-w64-mingw32-g++-win32 to provide /usr/bin/x86_64-w64-mingw32-g++ (x86_64-w64-mingw32-g++) in auto mode
17:40:09 [2020-03-30T17:40:09.984Z] Setting up binutils-mingw-w64 (2.31.1-11+8.3) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up thin-provisioning-tools (0.7.6-2.1) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up libnetfilter-conntrack3:s390x (1.0.7-1) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up jq (1.5+dfsg-2+b1) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up libpython3-stdlib:s390x (3.7.3-1) ...
17:40:09 [2020-03-30T17:40:09.984Z] Setting up python3.7 (3.7.3-2+deb10u1) ...
17:40:10 [2020-03-30T17:40:10.734Z] Setting up libselinux1-dev:s390x (2.8-1+b1) ...
17:40:10 [2020-03-30T17:40:10.734Z] Setting up iptables (1.8.2-4) ...
17:40:10 [2020-03-30T17:40:10.734Z] update-alternatives: using /usr/sbin/iptables-legacy to provide /usr/sbin/iptables (iptables) in auto mode
17:40:10 [2020-03-30T17:40:10.734Z] update-alternatives: using /usr/sbin/ip6tables-legacy to provide /usr/sbin/ip6tables (ip6tables) in auto mode
17:40:10 [2020-03-30T17:40:10.734Z] update-alternatives: using /usr/sbin/iptables-nft to provide /usr/sbin/iptables (iptables) in auto mode
17:40:10 [2020-03-30T17:40:10.734Z] update-alternatives: using /usr/sbin/ip6tables-nft to provide /usr/sbin/ip6tables (ip6tables) in auto mode
17:40:10 [2020-03-30T17:40:10.734Z] update-alternatives: using /usr/sbin/arptables-nft to provide /usr/sbin/arptables (arptables) in auto mode
17:40:10 [2020-03-30T17:40:10.734Z] update-alternatives: using /usr/sbin/ebtables-nft to provide /usr/sbin/ebtables (ebtables) in auto mode
17:40:10 [2020-03-30T17:40:10.734Z] Setting up python3 (3.7.3-1) ...
17:40:10 [2020-03-30T17:40:10.734Z] Setting up python3-wheel (0.32.3-2) ...
17:40:10 [2020-03-30T17:40:10.734Z] Setting up apparmor (2.13.2-10) ...
17:40:11 [2020-03-30T17:40:11.500Z] Setting up python3-lib2to3 (3.7.3-1) ...
17:40:11 [2020-03-30T17:40:11.500Z] Setting up python3-pkg-resources (40.8.0-1) ...
17:40:11 [2020-03-30T17:40:11.500Z] Setting up python3-distutils (3.7.3-1) ...
17:40:11 [2020-03-30T17:40:11.500Z] Setting up python3-setuptools (40.8.0-1) ...
17:40:11 [2020-03-30T17:40:11.846Z] Setting up python3-pip (18.1-5) ...
17:40:12 [2020-03-30T17:40:12.202Z] Setting up libdevmapper1.02.1:s390x (2:1.02.155-3) ...
17:40:12 [2020-03-30T17:40:12.202Z] Setting up dmsetup (2:1.02.155-3) ...
17:40:12 [2020-03-30T17:40:12.202Z] Setting up libdevmapper-event1.02.1:s390x (2:1.02.155-3) ...
17:40:12 [2020-03-30T17:40:12.202Z] Setting up xfsprogs (4.20.0-1) ...
17:40:12 [2020-03-30T17:40:12.202Z] Setting up libdevmapper-dev:s390x (2:1.02.155-3) ...
17:40:12 [2020-03-30T17:40:12.202Z] Processing triggers for mime-support (3.62) ...
17:40:12 [2020-03-30T17:40:12.202Z] Processing triggers for libc-bin (2.28-10) ...
17:40:16 [2020-03-30T17:40:16.231Z] Removing intermediate container d3976a4a30fd
17:40:16 [2020-03-30T17:40:16.231Z]  ---> 87b295c17a58
17:40:16 [2020-03-30T17:40:16.231Z] Step 117/140 : RUN update-alternatives --set iptables  /usr/sbin/iptables-legacy  || true  && update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy || true  && update-alternatives --set arptables /usr/sbin/arptables-legacy || true
17:40:16 [2020-03-30T17:40:16.231Z]  ---> Running in 77b57606ad0b
17:40:16 [2020-03-30T17:40:16.994Z] update-alternatives: using /usr/sbin/iptables-legacy to provide /usr/sbin/iptables (iptables) in manual mode
17:40:16 [2020-03-30T17:40:16.994Z] update-alternatives: using /usr/sbin/ip6tables-legacy to provide /usr/sbin/ip6tables (ip6tables) in manual mode
17:40:16 [2020-03-30T17:40:16.994Z] update-alternatives: error: alternative /usr/sbin/arptables-legacy for arptables not registered; not setting
17:40:17 [2020-03-30T17:40:17.348Z] Removing intermediate container 77b57606ad0b
17:40:17 [2020-03-30T17:40:17.349Z]  ---> b800e2ec8fe2
17:40:17 [2020-03-30T17:40:17.349Z] Step 118/140 : RUN pip3 install yamllint==1.16.0
17:40:17 [2020-03-30T17:40:17.349Z]  ---> Running in af4647279943
17:40:18 [2020-03-30T17:40:18.554Z] Collecting yamllint==1.16.0
17:40:18 [2020-03-30T17:40:18.910Z]   Downloading https://files.pythonhosted.org/packages/a7/9b/f43134908f31b420f983726e348ac30f884c300e006f244ab095c29b942a/yamllint-1.16.0-py2.py3-none-any.whl (57kB)
17:40:18 [2020-03-30T17:40:18.910Z] Collecting pathspec>=0.5.3 (from yamllint==1.16.0)
17:40:18 [2020-03-30T17:40:18.910Z]   Downloading https://files.pythonhosted.org/packages/34/fa/c5cc4f796eb954b56fd1f6c7c315647b18b027e0736c9ae87b73bbb1f933/pathspec-0.7.0-py2.py3-none-any.whl
17:40:18 [2020-03-30T17:40:18.910Z] Collecting pyyaml (from yamllint==1.16.0)
17:40:18 [2020-03-30T17:40:18.910Z]   Downloading https://files.pythonhosted.org/packages/64/c2/b80047c7ac2478f9501676c988a5411ed5572f35d1beff9cae07d321512c/PyYAML-5.3.1.tar.gz (269kB)
17:40:19 [2020-03-30T17:40:19.255Z] Building wheels for collected packages: pyyaml
17:40:19 [2020-03-30T17:40:19.255Z]   Running setup.py bdist_wheel for pyyaml: started
17:40:19 [2020-03-30T17:40:19.255Z]   Running setup.py bdist_wheel for pyyaml: finished with status 'done'
17:40:19 [2020-03-30T17:40:19.255Z]   Stored in directory: /root/.cache/pip/wheels/a7/c1/ea/cf5bd31012e735dc1dfea3131a2d5eae7978b251083d6247bd
17:40:19 [2020-03-30T17:40:19.255Z] Successfully built pyyaml
17:40:19 [2020-03-30T17:40:19.255Z] Installing collected packages: pathspec, pyyaml, yamllint
17:40:19 [2020-03-30T17:40:19.616Z] Successfully installed pathspec-0.7.0 pyyaml-5.3.1 yamllint-1.16.0
17:40:20 [2020-03-30T17:40:20.200Z] Removing intermediate container af4647279943
17:40:20 [2020-03-30T17:40:20.201Z]  ---> 205cffdacf8a
17:40:20 [2020-03-30T17:40:20.201Z] Step 119/140 : COPY --from=dockercli     /build/ /usr/local/cli
17:40:21 [2020-03-30T17:40:21.100Z]  ---> ff466f0280ef
17:40:21 [2020-03-30T17:40:21.100Z] Step 120/140 : COPY --from=frozen-images /build/ /docker-frozen-images
17:40:23 [2020-03-30T17:40:23.121Z]  ---> 917c36eee34d
17:40:23 [2020-03-30T17:40:23.121Z] Step 121/140 : COPY --from=swagger       /build/ /usr/local/bin/
17:40:23 [2020-03-30T17:40:23.121Z]  ---> af8541c1f20a
17:40:23 [2020-03-30T17:40:23.121Z] Step 122/140 : COPY --from=tomlv         /build/ /usr/local/bin/
17:40:23 [2020-03-30T17:40:23.496Z]  ---> 643f2a9ddb1f
17:40:23 [2020-03-30T17:40:23.496Z] Step 123/140 : COPY --from=tini          /build/ /usr/local/bin/
17:40:23 [2020-03-30T17:40:23.881Z]  ---> 7a73d334487d
17:40:23 [2020-03-30T17:40:23.881Z] Step 124/140 : COPY --from=registry      /build/ /usr/local/bin/
17:40:24 [2020-03-30T17:40:24.672Z]  ---> 0747fa73f2ec
17:40:24 [2020-03-30T17:40:24.672Z] Step 125/140 : COPY --from=criu          /build/ /usr/local/
17:40:25 [2020-03-30T17:40:25.027Z]  ---> 2f45079015eb
17:40:25 [2020-03-30T17:40:25.027Z] Step 126/140 : COPY --from=vndr          /build/ /usr/local/bin/
17:40:25 [2020-03-30T17:40:25.388Z]  ---> fac5f5279026
17:40:25 [2020-03-30T17:40:25.388Z] Step 127/140 : COPY --from=gotestsum     /build/ /usr/local/bin/
17:40:25 [2020-03-30T17:40:25.755Z]  ---> 6a66fb902b60
17:40:25 [2020-03-30T17:40:25.755Z] Step 128/140 : COPY --from=gometalinter  /build/ /usr/local/bin/
17:40:27 [2020-03-30T17:40:27.021Z]  ---> 9c1c56941c15
17:40:27 [2020-03-30T17:40:27.021Z] Step 129/140 : COPY --from=runc          /build/ /usr/local/bin/
17:40:27 [2020-03-30T17:40:27.390Z]  ---> 882c0c5cca4b
17:40:27 [2020-03-30T17:40:27.391Z] Step 130/140 : COPY --from=containerd    /build/ /usr/local/bin/
17:40:28 [2020-03-30T17:40:28.187Z]  ---> 7cac032610f6
17:40:28 [2020-03-30T17:40:28.187Z] Step 131/140 : COPY --from=rootlesskit   /build/ /usr/local/bin/
17:40:28 [2020-03-30T17:40:28.599Z]  ---> b4efba86510b
17:40:28 [2020-03-30T17:40:28.599Z] Step 132/140 : COPY --from=vpnkit        /vpnkit /usr/local/bin/vpnkit.x86_64
17:40:28 [2020-03-30T17:40:28.968Z]  ---> c7d4b1293715
17:40:28 [2020-03-30T17:40:28.968Z] Step 133/140 : COPY --from=proxy         /build/ /usr/local/bin/
17:40:29 [2020-03-30T17:40:29.322Z]  ---> 877bb333c89a
17:40:29 [2020-03-30T17:40:29.322Z] Step 134/140 : ENV PATH=/usr/local/cli:$PATH
17:40:29 [2020-03-30T17:40:29.322Z]  ---> Running in 32be0d6af992
17:40:29 [2020-03-30T17:40:29.674Z] Removing intermediate container 32be0d6af992
17:40:29 [2020-03-30T17:40:29.674Z]  ---> a56c64a8c18b
17:40:29 [2020-03-30T17:40:29.674Z] Step 135/140 : ENV DOCKER_BUILDTAGS apparmor seccomp selinux
17:40:29 [2020-03-30T17:40:29.674Z]  ---> Running in 36d04ab92cf0
17:40:30 [2020-03-30T17:40:30.024Z] Removing intermediate container 36d04ab92cf0
17:40:30 [2020-03-30T17:40:30.024Z]  ---> fd299f812164
17:40:30 [2020-03-30T17:40:30.024Z] Step 136/140 : WORKDIR /go/src/github.com/docker/docker
17:40:30 [2020-03-30T17:40:30.024Z]  ---> Running in 9eee6caf9afc
17:40:30 [2020-03-30T17:40:30.024Z] Removing intermediate container 9eee6caf9afc
17:40:30 [2020-03-30T17:40:30.024Z]  ---> ee68a7b30b2e
17:40:30 [2020-03-30T17:40:30.024Z] Step 137/140 : VOLUME /var/lib/docker
17:40:30 [2020-03-30T17:40:30.390Z]  ---> Running in 1da72f97d810
17:40:30 [2020-03-30T17:40:30.390Z] Removing intermediate container 1da72f97d810
17:40:30 [2020-03-30T17:40:30.390Z]  ---> 2131f15c2d38
17:40:30 [2020-03-30T17:40:30.390Z] Step 138/140 : ENTRYPOINT ["hack/dind"]
17:40:30 [2020-03-30T17:40:30.390Z]  ---> Running in 96437787ca93
17:40:30 [2020-03-30T17:40:30.835Z] Removing intermediate container 96437787ca93
17:40:30 [2020-03-30T17:40:30.835Z]  ---> 5cc7a114fb29
17:40:30 [2020-03-30T17:40:30.835Z] Step 139/140 : FROM dev AS final
17:40:30 [2020-03-30T17:40:30.835Z]  ---> 5cc7a114fb29
17:40:30 [2020-03-30T17:40:30.835Z] Step 140/140 : COPY . /go/src/github.com/docker/docker
17:40:34 [2020-03-30T17:40:34.102Z]  ---> ac816cf3bb9d
17:40:34 [2020-03-30T17:40:34.102Z] Successfully built ac816cf3bb9d
17:40:34 [2020-03-30T17:40:34.102Z] Successfully tagged docker:359edd8cbf9c3ca98e34d319bc3ff015f2bafbf0