Skip to content

Console Output

14:35:41 [2020-01-10T14:35:41.625Z] + make bundles/buildx
14:35:41 [2020-01-10T14:35:41.625Z] make: command: Command not found
14:35:41 [2020-01-10T14:35:41.625Z] make: command: Command not found
14:35:41 [2020-01-10T14:35:41.625Z] mkdir bundles
14:35:41 [2020-01-10T14:35:41.625Z] docker build -f ${BUILDX_DOCKERFILE:-Dockerfile.buildx} -t "moby-buildx:${BUILDX_COMMIT:-latest}" \
14:35:41 [2020-01-10T14:35:41.625Z] 	--build-arg BUILDX_COMMIT \
14:35:41 [2020-01-10T14:35:41.625Z] 	--build-arg BUILDX_REPO \
14:35:41 [2020-01-10T14:35:41.625Z] 	--build-arg GOOS=$(if [ -n "" ]; then echo ; else go env GOHOSTOS || uname | awk '{print tolower($0)}' || true; fi) \
14:35:41 [2020-01-10T14:35:41.625Z] 	--build-arg GOARCH=$(if [ -n "" ]; then echo ; else go env GOHOSTARCH || true; fi) \
14:35:41 [2020-01-10T14:35:41.625Z] 	.
14:35:41 [2020-01-10T14:35:41.625Z] /bin/sh: 4: go: not found
14:35:41 [2020-01-10T14:35:41.625Z] /bin/sh: 5: go: not found
14:35:43 [2020-01-10T14:35:43.504Z] Sending build context to Docker daemon  51.09MB

14:35:43 [2020-01-10T14:35:43.504Z] Step 1/16 : ARG GO_VERSION=1.12.10
14:35:43 [2020-01-10T14:35:43.504Z] Step 2/16 : ARG BUILDX_COMMIT=v0.3.1
14:35:43 [2020-01-10T14:35:43.504Z] Step 3/16 : ARG BUILDX_REPO=https://github.com/docker/buildx.git
14:35:43 [2020-01-10T14:35:43.504Z] Step 4/16 : FROM golang:${GO_VERSION}-stretch AS build
14:35:43 [2020-01-10T14:35:43.504Z]  ---> 687421176e14
14:35:43 [2020-01-10T14:35:43.504Z] Step 5/16 : ARG BUILDX_REPO
14:35:43 [2020-01-10T14:35:43.504Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.504Z]  ---> 1f5b21160a7f
14:35:43 [2020-01-10T14:35:43.504Z] Step 6/16 : RUN git clone "${BUILDX_REPO}" /buildx
14:35:43 [2020-01-10T14:35:43.504Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.504Z]  ---> a3c63f3be8be
14:35:43 [2020-01-10T14:35:43.504Z] Step 7/16 : WORKDIR /buildx
14:35:43 [2020-01-10T14:35:43.504Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.504Z]  ---> c0de732c7d97
14:35:43 [2020-01-10T14:35:43.504Z] Step 8/16 : ARG BUILDX_COMMIT
14:35:43 [2020-01-10T14:35:43.504Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.504Z]  ---> 8897232d646b
14:35:43 [2020-01-10T14:35:43.504Z] Step 9/16 : RUN git fetch origin "${BUILDX_COMMIT}":build && git checkout build
14:35:43 [2020-01-10T14:35:43.504Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.504Z]  ---> d4b40cd709b5
14:35:43 [2020-01-10T14:35:43.504Z] Step 10/16 : RUN go mod download
14:35:43 [2020-01-10T14:35:43.504Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.504Z]  ---> 1d1087434e7e
14:35:43 [2020-01-10T14:35:43.504Z] Step 11/16 : ARG GOOS
14:35:43 [2020-01-10T14:35:43.504Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.504Z]  ---> d499c0b45001
14:35:43 [2020-01-10T14:35:43.504Z] Step 12/16 : ARG GOARCH
14:35:43 [2020-01-10T14:35:43.504Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.504Z]  ---> bf112b07f702
14:35:43 [2020-01-10T14:35:43.505Z] Step 13/16 : RUN GOOS="${GOOS}" GOARCH="${GOARCH}" BUILDX_COMMIT="${BUILDX_COMMIT}";     pkg="github.com/docker/buildx";     ldflags="      -X \"${pkg}/version.Version=$(git describe --tags)\"       -X \"${pkg}/version.Revision=$(git rev-parse --short HEAD)\"       -X \"${pkg}/version.Package=buildx\"     ";     go build -ldflags "${ldflags}" -o /usr/bin/buildx ./cmd/buildx
14:35:43 [2020-01-10T14:35:43.505Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.505Z]  ---> 9b81ea815285
14:35:43 [2020-01-10T14:35:43.505Z] Step 14/16 : FROM golang:${GO_VERSION}-stretch
14:35:43 [2020-01-10T14:35:43.505Z]  ---> 687421176e14
14:35:43 [2020-01-10T14:35:43.505Z] Step 15/16 : COPY --from=build /usr/bin/buildx /usr/bin/buildx
14:35:43 [2020-01-10T14:35:43.505Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.505Z]  ---> 8976c8f7c61c
14:35:43 [2020-01-10T14:35:43.505Z] Step 16/16 : ENTRYPOINT ["/usr/bin/buildx"]
14:35:43 [2020-01-10T14:35:43.505Z]  ---> Using cache
14:35:43 [2020-01-10T14:35:43.505Z]  ---> edd56133f92b
14:35:43 [2020-01-10T14:35:43.505Z] Successfully built edd56133f92b
14:35:43 [2020-01-10T14:35:43.505Z] Successfully tagged moby-buildx:latest
14:35:43 [2020-01-10T14:35:43.505Z] id=$(docker create moby-buildx:${BUILDX_COMMIT:-latest}); \
14:35:43 [2020-01-10T14:35:43.505Z] if [ -n "${id}" ]; then \
14:35:43 [2020-01-10T14:35:43.505Z] 	docker cp ${id}:/usr/bin/buildx bundles/buildx \
14:35:43 [2020-01-10T14:35:43.505Z] 	&& touch bundles/buildx; \
14:35:43 [2020-01-10T14:35:43.505Z] 	docker rm -f ${id}; \
14:35:43 [2020-01-10T14:35:43.505Z] fi
14:35:43 [2020-01-10T14:35:43.867Z] 66c264d69916a74824b587171fe1569b56195d629e2f543d0f3183347b5fe002
14:35:43 [2020-01-10T14:35:43.867Z] bundles/buildx version
14:35:43 [2020-01-10T14:35:43.867Z] buildx v0.3.1 6db68d0
14:35:43 [2020-01-10T14:35:43.867Z] + bundles/buildx build --load --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker:50f1e205e48dc6ef646c0d0035ae18080dc8adf3 .
14:35:44 [2020-01-10T14:35:44.232Z] #1 [internal] load build definition from Dockerfile
14:35:44 [2020-01-10T14:35:44.232Z] #1 transferring dockerfile: 15.57kB done
14:35:44 [2020-01-10T14:35:44.232Z] #1 DONE 0.0s
14:35:44 [2020-01-10T14:35:44.232Z] 
14:35:44 [2020-01-10T14:35:44.232Z] #2 [internal] load .dockerignore
14:35:44 [2020-01-10T14:35:44.232Z] #2 transferring context: 112B done
14:35:44 [2020-01-10T14:35:44.232Z] #2 DONE 0.0s
14:35:44 [2020-01-10T14:35:44.232Z] 
14:35:44 [2020-01-10T14:35:44.232Z] #3 resolve image config for docker.io/docker/dockerfile:1.1.3-experimental
14:35:44 [2020-01-10T14:35:44.232Z] #3 DONE 0.3s
14:35:44 [2020-01-10T14:35:44.232Z] 
14:35:44 [2020-01-10T14:35:44.232Z] #4 docker-image://docker.io/docker/dockerfile:1.1.3-experimental@sha256:888...
14:35:44 [2020-01-10T14:35:44.232Z] #4 resolve docker.io/docker/dockerfile:1.1.3-experimental@sha256:888f21826273409b5ef5ff9ceb90c64a8f8ec7760da30d1ffbe6c3e2d323a7bd done
14:35:44 [2020-01-10T14:35:44.232Z] #4 CACHED
14:35:44 [2020-01-10T14:35:44.629Z] 
14:35:44 [2020-01-10T14:35:44.629Z] #6 [internal] load metadata for docker.io/djs55/vpnkit@sha256:e508a17cfacc8...
14:35:44 [2020-01-10T14:35:44.629Z] #6 DONE 0.0s
14:35:44 [2020-01-10T14:35:44.629Z] 
14:35:44 [2020-01-10T14:35:44.629Z] #5 [internal] load metadata for docker.io/library/golang:1.13.5-buster
14:35:45 [2020-01-10T14:35:45.102Z] #5 DONE 0.1s
14:35:45 [2020-01-10T14:35:45.102Z] 
14:35:45 [2020-01-10T14:35:45.102Z] #68 [vpnkit 1/1] FROM docker.io/djs55/vpnkit@sha256:e508a17cfacc8fd39261d5b4...
14:35:45 [2020-01-10T14:35:45.102Z] #68 resolve docker.io/djs55/vpnkit@sha256:e508a17cfacc8fd39261d5b4e397df2b953690da577e2c987a47630cd0c42f8e done
14:35:45 [2020-01-10T14:35:45.102Z] #68 DONE 0.0s
14:35:45 [2020-01-10T14:35:45.102Z] 
14:35:45 [2020-01-10T14:35:45.102Z] #7 [base 1/3] FROM docker.io/library/golang:1.13.5-buster@sha256:9961fbd73f...
14:35:45 [2020-01-10T14:35:45.102Z] #7 resolve docker.io/library/golang:1.13.5-buster@sha256:9961fbd73f79e823173d0d604e3562b83d561cdcd0bd29f05cc0cebb7785729e done
14:35:45 [2020-01-10T14:35:45.102Z] #7 DONE 0.0s
14:35:45 [2020-01-10T14:35:45.102Z] 
14:35:45 [2020-01-10T14:35:45.102Z] #8 [base 2/3] RUN echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";'...
14:35:45 [2020-01-10T14:35:45.102Z] #8 CACHED
14:35:45 [2020-01-10T14:35:45.102Z] 
14:35:45 [2020-01-10T14:35:45.102Z] #9 [base 3/3] RUN sed -ri "s/(httpredir|deb).debian.org/cdn-fastly.deb.debi...
14:35:45 [2020-01-10T14:35:45.102Z] #9 CACHED
14:35:45 [2020-01-10T14:35:45.102Z] 
14:35:45 [2020-01-10T14:35:45.102Z] #43 [criu 1/2] RUN --mount=type=cache,sharing=locked,id=moby-criu-aptlib,tar...
14:35:45 [2020-01-10T14:35:45.102Z] #43 CACHED
14:35:45 [2020-01-10T14:35:45.102Z] 
14:35:45 [2020-01-10T14:35:45.102Z] #40 [registry 1/2] WORKDIR /go/src/github.com/docker/distribution
14:35:45 [2020-01-10T14:35:45.102Z] #40 CACHED
14:35:45 [2020-01-10T14:35:45.102Z] 
14:35:45 [2020-01-10T14:35:45.102Z] #20 [internal] load build context
14:35:46 [2020-01-10T14:35:46.891Z] #20 transferring context: 46.58MB 2.2s done
14:35:46 [2020-01-10T14:35:46.891Z] #20 DONE 2.2s
14:35:46 [2020-01-10T14:35:46.891Z] 
14:35:46 [2020-01-10T14:35:46.891Z] #21 [rootlesskit 1/4] COPY hack/dockerfile/install/install.sh ./install.sh
14:35:47 [2020-01-10T14:35:47.287Z] #21 ...
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #10 [runtime-dev-cross-false 1/1] RUN --mount=type=cache,sharing=locked,id=m...
14:35:47 [2020-01-10T14:35:47.287Z] #10 CACHED
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #55 [runc 1/3] COPY hack/dockerfile/install/install.sh ./install.sh
14:35:47 [2020-01-10T14:35:47.287Z] #55 DONE 0.1s
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #21 [rootlesskit 1/4] COPY hack/dockerfile/install/install.sh ./install.sh
14:35:47 [2020-01-10T14:35:47.287Z] #21 DONE 0.1s
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #64 [rootlesskit 2/4] COPY hack/dockerfile/install/rootlesskit.installer ./
14:35:47 [2020-01-10T14:35:47.287Z] #64 DONE 0.1s
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #46 [vndr 2/3] COPY hack/dockerfile/install/vndr.installer ./
14:35:47 [2020-01-10T14:35:47.287Z] #46 DONE 0.2s
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #70 [proxy 2/3] COPY hack/dockerfile/install/proxy.installer ./
14:35:47 [2020-01-10T14:35:47.287Z] #70 DONE 0.1s
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #22 [dockercli 2/3] COPY hack/dockerfile/install/dockercli.installer ./
14:35:47 [2020-01-10T14:35:47.287Z] #22 DONE 0.1s
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #52 [golangci_lint 2/3] COPY hack/dockerfile/install/golangci_lint.installer...
14:35:47 [2020-01-10T14:35:47.287Z] #52 DONE 0.1s
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #49 [gotestsum 2/3] COPY hack/dockerfile/install/gotestsum.installer ./
14:35:47 [2020-01-10T14:35:47.287Z] #49 DONE 0.2s
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #56 [runc 2/3] COPY hack/dockerfile/install/runc.installer ./
14:35:47 [2020-01-10T14:35:47.287Z] #56 DONE 0.2s
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #32 [tomlv 2/3] COPY hack/dockerfile/install/tomlv.installer ./
14:35:47 [2020-01-10T14:35:47.287Z] #32 DONE 0.2s
14:35:47 [2020-01-10T14:35:47.287Z] 
14:35:47 [2020-01-10T14:35:47.287Z] #47 [vndr 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     --mou...
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.412 + RM_GOPATH=0
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.413 + TMP_GOPATH=
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.413 + : /build
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.414 + '[' -z '' ']'
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.416 ++ mktemp -d
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.418 + export GOPATH=/tmp/tmp.y9eQNevSa9
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.418 + GOPATH=/tmp/tmp.y9eQNevSa9
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.418 + RM_GOPATH=1
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.419 ++ dirname ./install.sh
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.422 + dir=.
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.422 + bin=vndr
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.422 + shift
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.423 + '[' '!' -f ./vndr.installer ']'
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.424 + . ./vndr.installer
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.424 ++ : f5ab8fc5fb64d66b5c6e55a0bcb58b2e92362fa0
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.424 + install_vndr
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.425 + echo 'Install vndr version f5ab8fc5fb64d66b5c6e55a0bcb58b2e92362fa0'
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.426 Install vndr version f5ab8fc5fb64d66b5c6e55a0bcb58b2e92362fa0
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.426 + git clone https://github.com/LK4D4/vndr.git /tmp/tmp.y9eQNevSa9/src/github.com/LK4D4/vndr
14:35:47 [2020-01-10T14:35:47.679Z] #47 0.431 Cloning into '/tmp/tmp.y9eQNevSa9/src/github.com/LK4D4/vndr'...
14:35:48 [2020-01-10T14:35:48.527Z] #47 1.078 + cd /tmp/tmp.y9eQNevSa9/src/github.com/LK4D4/vndr
14:35:48 [2020-01-10T14:35:48.527Z] #47 1.079 + git checkout -q f5ab8fc5fb64d66b5c6e55a0bcb58b2e92362fa0
14:35:48 [2020-01-10T14:35:48.527Z] #47 1.084 + go build -buildmode=pie -v -o /build/vndr .
14:35:50 [2020-01-10T14:35:50.807Z] #47 3.201 github.com/LK4D4/vndr/godl/singleflight
14:35:50 [2020-01-10T14:35:50.807Z] #47 3.202 github.com/LK4D4/vndr/build
14:35:52 [2020-01-10T14:35:52.934Z] #47 5.342 github.com/LK4D4/vndr/godl
14:35:52 [2020-01-10T14:35:52.934Z] #47 ...
14:35:52 [2020-01-10T14:35:52.934Z] 
14:35:52 [2020-01-10T14:35:52.934Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:35:52 [2020-01-10T14:35:52.934Z] #44 2.015 Note: Building without setproctitle() and strlcpy() support.
14:35:52 [2020-01-10T14:35:52.934Z] #44 2.015       To enable these features, please install libbsd-devel (RPM) / libbsd-dev (DEB).
14:35:52 [2020-01-10T14:35:52.934Z] #44 2.938 fatal: not a git repository (or any of the parent directories): .git
14:35:52 [2020-01-10T14:35:52.934Z] #44 2.953   GEN      .gitid
14:35:52 [2020-01-10T14:35:52.934Z] #44 2.955   GEN      criu/include/version.h
14:35:52 [2020-01-10T14:35:52.934Z] #44 2.960   GEN      include/common/asm
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.158   PBCC     images/google/protobuf/descriptor.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.250   PBCC     images/opts.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.322   PBCC     images/sit.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.386   DEP      images/google/protobuf/descriptor.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.487   DEP      images/opts.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.517   DEP      images/sit.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.613   PBCC     images/macvlan.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.655   DEP      images/macvlan.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.727   PBCC     images/autofs.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.755   DEP      images/autofs.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.847   PBCC     images/sysctl.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 4.852   DEP      images/sysctl.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.022   PBCC     images/time.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.081   DEP      images/time.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.133   PBCC     images/binfmt-misc.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.174   DEP      images/binfmt-misc.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.268   PBCC     images/seccomp.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.300   DEP      images/seccomp.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.356   PBCC     images/userns.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.463   DEP      images/userns.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.648   PBCC     images/cgroup.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.659   DEP      images/cgroup.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.678   PBCC     images/fown.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.694   PBCC     images/ext-file.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.751   DEP      images/fown.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.841   DEP      images/ext-file.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.907   PBCC     images/rpc.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 5.981   DEP      images/rpc.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.071   PBCC     images/siginfo.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.101   DEP      images/siginfo.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.168   PBCC     images/pagemap.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.253   DEP      images/pagemap.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.330   PBCC     images/rlimit.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.397   DEP      images/rlimit.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.471   PBCC     images/file-lock.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.511   DEP      images/file-lock.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.582   PBCC     images/tty.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.659   DEP      images/tty.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.742   PBCC     images/tun.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.771   PBCC     images/netdev.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.858   DEP      images/tun.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 6.957   DEP      images/netdev.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.021   PBCC     images/vma.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.055   DEP      images/vma.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.117   PBCC     images/creds.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.135   DEP      images/creds.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.175   PBCC     images/utsns.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.196   DEP      images/utsns.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.242   PBCC     images/ipc-desc.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.276   PBCC     images/ipc-sem.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.298   DEP      images/ipc-desc.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.356   DEP      images/ipc-sem.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.383   PBCC     images/ipc-msg.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.405   DEP      images/ipc-msg.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.450   PBCC     images/ipc-shm.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.464   DEP      images/ipc-shm.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.507   PBCC     images/ipc-var.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.532   DEP      images/ipc-var.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.570   PBCC     images/sk-opts.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.583   PBCC     images/packet-sock.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.620   DEP      images/sk-opts.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.684   DEP      images/packet-sock.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.791   PBCC     images/sk-netlink.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.833   DEP      images/sk-netlink.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.909   PBCC     images/sk-inet.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.943   DEP      images/sk-inet.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 7.991   PBCC     images/sk-unix.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 8.027   DEP      images/sk-unix.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 8.083   PBCC     images/mm.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 8.102   DEP      images/mm.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 8.154   PBCC     images/timerfd.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 8.192   DEP      images/timerfd.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 8.212   PBCC     images/timer.pb-c.c
14:35:52 [2020-01-10T14:35:52.934Z] #44 8.229   DEP      images/timer.pb-c.d
14:35:52 [2020-01-10T14:35:52.934Z] #44 8.281   PBCC     images/sa.pb-c.c
14:35:53 [2020-01-10T14:35:53.353Z] #44 8.306   DEP      images/sa.pb-c.d
14:35:53 [2020-01-10T14:35:53.353Z] #44 8.363   PBCC     images/pipe-data.pb-c.c
14:35:53 [2020-01-10T14:35:53.353Z] #44 8.375   DEP      images/pipe-data.pb-c.d
14:35:53 [2020-01-10T14:35:53.353Z] #44 8.447   PBCC     images/mnt.pb-c.c
14:35:53 [2020-01-10T14:35:53.353Z] #44 8.510   DEP      images/mnt.pb-c.d
14:35:53 [2020-01-10T14:35:53.353Z] #44 8.552   PBCC     images/sk-packet.pb-c.c
14:35:53 [2020-01-10T14:35:53.353Z] #44 8.559   DEP      images/sk-packet.pb-c.d
14:35:53 [2020-01-10T14:35:53.353Z] #44 8.630   PBCC     images/tcp-stream.pb-c.c
14:35:53 [2020-01-10T14:35:53.353Z] #44 8.665   DEP      images/tcp-stream.pb-c.d
14:35:53 [2020-01-10T14:35:53.353Z] #44 8.745   PBCC     images/pipe.pb-c.c
14:35:53 [2020-01-10T14:35:53.763Z] #44 8.764   DEP      images/pipe.pb-c.d
14:35:53 [2020-01-10T14:35:53.763Z] #44 8.821   PBCC     images/pstree.pb-c.c
14:35:53 [2020-01-10T14:35:53.763Z] #44 8.871   DEP      images/pstree.pb-c.d
14:35:53 [2020-01-10T14:35:53.763Z] #44 8.898   PBCC     images/fs.pb-c.c
14:35:53 [2020-01-10T14:35:53.763Z] #44 8.903   DEP      images/fs.pb-c.d
14:35:53 [2020-01-10T14:35:53.763Z] #44 8.948   PBCC     images/signalfd.pb-c.c
14:35:53 [2020-01-10T14:35:53.763Z] #44 8.996   DEP      images/signalfd.pb-c.d
14:35:53 [2020-01-10T14:35:53.763Z] #44 9.066   PBCC     images/fh.pb-c.c
14:35:53 [2020-01-10T14:35:53.763Z] #44 9.132   PBCC     images/fsnotify.pb-c.c
14:35:54 [2020-01-10T14:35:54.187Z] #44 9.168   DEP      images/fh.pb-c.d
14:35:54 [2020-01-10T14:35:54.187Z] #44 9.202   DEP      images/fsnotify.pb-c.d
14:35:54 [2020-01-10T14:35:54.187Z] #44 9.261   PBCC     images/eventpoll.pb-c.c
14:35:54 [2020-01-10T14:35:54.187Z] #44 9.284   DEP      images/eventpoll.pb-c.d
14:35:54 [2020-01-10T14:35:54.187Z] #44 9.352   PBCC     images/eventfd.pb-c.c
14:35:54 [2020-01-10T14:35:54.187Z] #44 9.356   DEP      images/eventfd.pb-c.d
14:35:54 [2020-01-10T14:35:54.187Z] #44 9.363   PBCC     images/remap-file-path.pb-c.c
14:35:54 [2020-01-10T14:35:54.187Z] #44 9.371   DEP      images/remap-file-path.pb-c.d
14:35:54 [2020-01-10T14:35:54.187Z] #44 9.418   PBCC     images/fifo.pb-c.c
14:35:54 [2020-01-10T14:35:54.187Z] #44 9.453   DEP      images/fifo.pb-c.d
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.514   PBCC     images/ghost-file.pb-c.c
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.554   DEP      images/ghost-file.pb-c.d
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.585   PBCC     images/regfile.pb-c.c
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.687   DEP      images/regfile.pb-c.d
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.742   PBCC     images/ns.pb-c.c
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.756   DEP      images/ns.pb-c.d
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.806   PBCC     images/fdinfo.pb-c.c
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.858   DEP      images/fdinfo.pb-c.d
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.918   PBCC     images/core-aarch64.pb-c.c
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.944   PBCC     images/core-arm.pb-c.c
14:35:54 [2020-01-10T14:35:54.611Z] #44 9.976   PBCC     images/core-ppc64.pb-c.c
14:35:54 [2020-01-10T14:35:54.611Z] #44 10.04   PBCC     images/core-s390.pb-c.c
14:35:54 [2020-01-10T14:35:54.611Z] #44 ...
14:35:54 [2020-01-10T14:35:54.611Z] 
14:35:54 [2020-01-10T14:35:54.611Z] #41 [registry 2/2] RUN --mount=type=cache,target=/root/.cache/go-build     -...
14:35:54 [2020-01-10T14:35:54.611Z] #41 0.570 + git clone https://github.com/docker/distribution.git .
14:35:54 [2020-01-10T14:35:54.611Z] #41 0.674 Cloning into '.'...
14:35:55 [2020-01-10T14:35:55.038Z] #41 ...
14:35:55 [2020-01-10T14:35:55.038Z] 
14:35:55 [2020-01-10T14:35:55.038Z] #59 [containerd 1/4] RUN --mount=type=cache,sharing=locked,id=moby-container...
14:35:55 [2020-01-10T14:35:55.038Z] #59 1.068 Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
14:35:55 [2020-01-10T14:35:55.038Z] #59 1.095 Hit:2 http://cdn-fastly.deb.debian.org/debian-security buster/updates InRelease
14:35:55 [2020-01-10T14:35:55.038Z] #59 1.187 Hit:3 http://cdn-fastly.deb.debian.org/debian buster-updates InRelease
14:35:55 [2020-01-10T14:35:55.038Z] #59 2.876 Reading package lists...
14:35:55 [2020-01-10T14:35:55.038Z] #59 6.810 Reading package lists...
14:35:55 [2020-01-10T14:35:55.038Z] #59 ...
14:35:55 [2020-01-10T14:35:55.038Z] 
14:35:55 [2020-01-10T14:35:55.038Z] #35 [tini 1/4] RUN --mount=type=cache,sharing=locked,id=moby-tini-aptlib,tar...
14:35:55 [2020-01-10T14:35:55.038Z] #35 1.162 Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
14:35:55 [2020-01-10T14:35:55.038Z] #35 1.164 Hit:2 http://cdn-fastly.deb.debian.org/debian-security buster/updates InRelease
14:35:55 [2020-01-10T14:35:55.038Z] #35 1.285 Hit:3 http://cdn-fastly.deb.debian.org/debian buster-updates InRelease
14:35:55 [2020-01-10T14:35:55.038Z] #35 3.016 Reading package lists...
14:35:55 [2020-01-10T14:35:55.038Z] #35 7.299 Reading package lists...
14:35:55 [2020-01-10T14:35:55.038Z] #35 ...
14:35:55 [2020-01-10T14:35:55.038Z] 
14:35:55 [2020-01-10T14:35:55.038Z] #23 [dockercli 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     ...
14:35:55 [2020-01-10T14:35:55.038Z] #23 0.764 + RM_GOPATH=0
14:35:55 [2020-01-10T14:35:55.038Z] #23 0.765 + TMP_GOPATH=
14:35:55 [2020-01-10T14:35:55.038Z] #23 0.765 + : /build
14:35:55 [2020-01-10T14:35:55.038Z] #23 0.765 + '[' -z '' ']'
14:35:55 [2020-01-10T14:35:55.038Z] #23 0.765 ++ mktemp -d
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.775 + export GOPATH=/tmp/tmp.EFowVN5bzJ
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.776 + GOPATH=/tmp/tmp.EFowVN5bzJ
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.776 + RM_GOPATH=1
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.776 ++ dirname ./install.sh
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.786 + dir=.
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.795 + bin=dockercli
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.795 + shift
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.795 + '[' '!' -f ./dockercli.installer ']'
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.795 + . ./dockercli.installer
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.796 ++ : stable
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.796 ++ : 17.06.2-ce
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.796 + install_dockercli
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.796 + echo 'Install docker/cli version 17.06.2-ce from stable'
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.796 ++ uname -m
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.797 Install docker/cli version 17.06.2-ce from stable
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.797 + arch=s390x
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.805 + '[' s390x '!=' x86_64 ']'
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.806 + '[' s390x '!=' s390x ']'
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.806 + url=https://download.docker.com/linux/static
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.806 + curl -Ls https://download.docker.com/linux/static/stable/s390x/docker-17.06.2-ce.tgz
14:35:55 [2020-01-10T14:35:55.039Z] #23 0.847 + tar -xz docker/docker
14:35:55 [2020-01-10T14:35:55.039Z] #23 7.593 + mkdir -p /build
14:35:55 [2020-01-10T14:35:55.039Z] #23 7.618 + mv docker/docker /build/
14:35:55 [2020-01-10T14:35:55.039Z] #23 7.629 + rmdir docker
14:35:55 [2020-01-10T14:35:55.039Z] #23 DONE 7.8s
14:35:55 [2020-01-10T14:35:55.039Z] 
14:35:55 [2020-01-10T14:35:55.039Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:35:55 [2020-01-10T14:35:55.039Z] #44 10.05   PBCC     images/core-x86.pb-c.c
14:35:55 [2020-01-10T14:35:55.039Z] #44 10.14   PBCC     images/core.pb-c.c
14:35:55 [2020-01-10T14:35:55.039Z] #44 10.25   PBCC     images/inventory.pb-c.c
14:35:55 [2020-01-10T14:35:55.039Z] #44 10.27   DEP      images/core-aarch64.pb-c.d
14:35:55 [2020-01-10T14:35:55.039Z] #44 10.37   DEP      images/core-arm.pb-c.d
14:35:55 [2020-01-10T14:35:55.445Z] #44 10.42   DEP      images/core-ppc64.pb-c.d
14:35:55 [2020-01-10T14:35:55.445Z] #44 10.54   DEP      images/core-s390.pb-c.d
14:35:55 [2020-01-10T14:35:55.445Z] #44 10.61   DEP      images/core-x86.pb-c.d
14:35:55 [2020-01-10T14:35:55.445Z] #44 10.67   DEP      images/core.pb-c.d
14:35:55 [2020-01-10T14:35:55.445Z] #44 10.77   DEP      images/inventory.pb-c.d
14:35:55 [2020-01-10T14:35:55.445Z] #44 10.85   PBCC     images/cpuinfo.pb-c.c
14:35:55 [2020-01-10T14:35:55.445Z] #44 10.88   DEP      images/cpuinfo.pb-c.d
14:35:55 [2020-01-10T14:35:55.934Z] #44 11.00   PBCC     images/stats.pb-c.c
14:35:55 [2020-01-10T14:35:55.934Z] #44 11.16   DEP      images/stats.pb-c.d
14:35:57 [2020-01-10T14:35:57.478Z] #44 ...
14:35:57 [2020-01-10T14:35:57.478Z] 
14:35:57 [2020-01-10T14:35:57.478Z] #71 [proxy 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     --mo...
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.412 + RM_GOPATH=0
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.412 + TMP_GOPATH=
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.413 + : /build
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.413 + '[' -z '' ']'
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.413 ++ mktemp -d
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.414 + export GOPATH=/tmp/tmp.3DMHVtKarh
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.414 + GOPATH=/tmp/tmp.3DMHVtKarh
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.415 + RM_GOPATH=1
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.415 ++ dirname ./install.sh
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.416 + dir=.
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.416 + bin=proxy
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.416 + shift
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.417 + '[' '!' -f ./proxy.installer ']'
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.417 + . ./proxy.installer
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.418 ++ : 90afbb01e1d8acacb505a092744ea42b9f167377
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.418 + install_proxy
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.418 + case "$1" in
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.418 + export CGO_ENABLED=0
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.419 + CGO_ENABLED=0
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.419 + _install_proxy
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.419 + echo 'Install docker-proxy version 90afbb01e1d8acacb505a092744ea42b9f167377'
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.419 Install docker-proxy version 90afbb01e1d8acacb505a092744ea42b9f167377
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.419 + git clone https://github.com/docker/libnetwork.git /tmp/tmp.3DMHVtKarh/src/github.com/docker/libnetwork
14:35:57 [2020-01-10T14:35:57.478Z] #71 0.421 Cloning into '/tmp/tmp.3DMHVtKarh/src/github.com/docker/libnetwork'...
14:35:57 [2020-01-10T14:35:57.478Z] #71 ...
14:35:57 [2020-01-10T14:35:57.478Z] 
14:35:57 [2020-01-10T14:35:57.478Z] #65 [rootlesskit 3/4] RUN --mount=type=cache,target=/root/.cache/go-build   ...
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.368 + RM_GOPATH=0
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.368 + TMP_GOPATH=
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.369 + : /build/
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.370 + '[' -z '' ']'
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.371 ++ mktemp -d
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.372 + export GOPATH=/tmp/tmp.ZLFfy9pXjK
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.372 + GOPATH=/tmp/tmp.ZLFfy9pXjK
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.372 + RM_GOPATH=1
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.374 ++ dirname ./install.sh
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.375 + dir=.
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.375 + bin=rootlesskit
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.375 + shift
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.375 + '[' '!' -f ./rootlesskit.installer ']'
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.375 + . ./rootlesskit.installer
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.375 ++ : 76c4e26750da3986fa0e741464fbf0fcd55bea71
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.377 + install_rootlesskit
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.377 + case "$1" in
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.377 + export CGO_ENABLED=0
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.377 + CGO_ENABLED=0
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.377 + _install_rootlesskit
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.377 + echo 'Install rootlesskit version 76c4e26750da3986fa0e741464fbf0fcd55bea71'
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.377 Install rootlesskit version 76c4e26750da3986fa0e741464fbf0fcd55bea71
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.378 + git clone https://github.com/rootless-containers/rootlesskit.git /tmp/tmp.ZLFfy9pXjK/src/github.com/rootless-containers/rootlesskit
14:35:57 [2020-01-10T14:35:57.478Z] #65 0.380 Cloning into '/tmp/tmp.ZLFfy9pXjK/src/github.com/rootless-containers/rootlesskit'...
14:35:57 [2020-01-10T14:35:57.478Z] #65 3.399 + cd /tmp/tmp.ZLFfy9pXjK/src/github.com/rootless-containers/rootlesskit
14:35:57 [2020-01-10T14:35:57.478Z] #65 3.399 + git checkout -q 76c4e26750da3986fa0e741464fbf0fcd55bea71
14:35:57 [2020-01-10T14:35:57.478Z] #65 3.963 + for f in rootlesskit rootlesskit-docker-proxy
14:35:57 [2020-01-10T14:35:57.478Z] #65 3.963 + go build -ldflags= -o /build//rootlesskit github.com/rootless-containers/rootlesskit/cmd/rootlesskit
14:35:57 [2020-01-10T14:35:57.478Z] #65 ...
14:35:57 [2020-01-10T14:35:57.478Z] 
14:35:57 [2020-01-10T14:35:57.478Z] #50 [gotestsum 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     ...
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.681 + RM_GOPATH=0
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.681 + TMP_GOPATH=
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.682 + : /build
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.682 + '[' -z '' ']'
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.683 ++ mktemp -d
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.685 + export GOPATH=/tmp/tmp.O3CJfXdxad
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.685 + GOPATH=/tmp/tmp.O3CJfXdxad
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.685 + RM_GOPATH=1
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.686 ++ dirname ./install.sh
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.689 + dir=.
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.689 + bin=gotestsum
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.689 + shift
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.689 + '[' '!' -f ./gotestsum.installer ']'
14:35:57 [2020-01-10T14:35:57.478Z] #50 0.689 + . ./gotestsum.installer
14:35:57 [2020-01-10T14:35:57.479Z] #50 0.689 ++ : v0.3.5
14:35:57 [2020-01-10T14:35:57.479Z] #50 0.690 + install_gotestsum
14:35:57 [2020-01-10T14:35:57.479Z] #50 0.690 + echo 'Installing gotestsum version v0.3.5'
14:35:57 [2020-01-10T14:35:57.479Z] #50 0.690 Installing gotestsum version v0.3.5
14:35:57 [2020-01-10T14:35:57.479Z] #50 0.692 + go get -d gotest.tools/gotestsum
14:35:57 [2020-01-10T14:35:57.891Z] #50 ...
14:35:57 [2020-01-10T14:35:57.891Z] 
14:35:57 [2020-01-10T14:35:57.891Z] #57 [runc 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     --mou...
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.676 + RM_GOPATH=0
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.676 + TMP_GOPATH=
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.676 + : /build
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.676 + '[' -z '' ']'
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.677 ++ mktemp -d
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.679 + export GOPATH=/tmp/tmp.67G6ajEyro
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.680 + GOPATH=/tmp/tmp.67G6ajEyro
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.680 + RM_GOPATH=1
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.681 ++ dirname ./install.sh
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.684 + dir=.
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.685 + bin=runc
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.685 + shift
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.685 + '[' '!' -f ./runc.installer ']'
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.685 + . ./runc.installer
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.685 ++ : d736ef14f0288d6993a1845745d6756cfc9ddd5a
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.687 + install_runc
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.688 + grep -q '^3\.10\.0.*\.el7\.'
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.691 + uname -r
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.695 + RUNC_BUILDTAGS='seccomp apparmor selinux '
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.696 Install runc version d736ef14f0288d6993a1845745d6756cfc9ddd5a (build tags: seccomp apparmor selinux )
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.696 + echo 'Install runc version d736ef14f0288d6993a1845745d6756cfc9ddd5a (build tags: seccomp apparmor selinux )'
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.696 + git clone https://github.com/opencontainers/runc.git /tmp/tmp.67G6ajEyro/src/github.com/opencontainers/runc
14:35:57 [2020-01-10T14:35:57.891Z] #57 0.701 Cloning into '/tmp/tmp.67G6ajEyro/src/github.com/opencontainers/runc'...
14:35:57 [2020-01-10T14:35:57.891Z] #57 9.394 + cd /tmp/tmp.67G6ajEyro/src/github.com/opencontainers/runc
14:35:57 [2020-01-10T14:35:57.891Z] #57 9.404 + git checkout -q d736ef14f0288d6993a1845745d6756cfc9ddd5a
14:35:57 [2020-01-10T14:35:57.891Z] #57 9.904 + '[' -z '' ']'
14:35:57 [2020-01-10T14:35:57.891Z] #57 9.904 + target=static
14:35:57 [2020-01-10T14:35:57.891Z] #57 9.904 + make 'BUILDTAGS=seccomp apparmor selinux ' static
14:35:57 [2020-01-10T14:35:57.891Z] #57 ...
14:35:57 [2020-01-10T14:35:57.891Z] 
14:35:57 [2020-01-10T14:35:57.891Z] #53 [golangci_lint 3/3] RUN --mount=type=cache,target=/root/.cache/go-build ...
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.344 + RM_GOPATH=0
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.344 + TMP_GOPATH=
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.344 + : /build
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.344 + '[' -z '' ']'
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.345 ++ mktemp -d
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.346 + export GOPATH=/tmp/tmp.yRmG0DYT38
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.346 + GOPATH=/tmp/tmp.yRmG0DYT38
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.346 + RM_GOPATH=1
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.347 ++ dirname ./install.sh
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.349 + dir=.
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.349 + bin=golangci_lint
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.350 + shift
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.350 + '[' '!' -f ./golangci_lint.installer ']'
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.350 + . ./golangci_lint.installer
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.350 ++ : v1.20.0
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.351 + install_golangci_lint
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.351 + echo 'Installing golangci-lint version v1.20.0'
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.351 Installing golangci-lint version v1.20.0
14:35:57 [2020-01-10T14:35:57.891Z] #53 0.351 + go get -d github.com/golangci/golangci-lint/cmd/golangci-lint
14:35:57 [2020-01-10T14:35:57.891Z] #53 ...
14:35:57 [2020-01-10T14:35:57.891Z] 
14:35:57 [2020-01-10T14:35:57.891Z] #33 [tomlv 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     --mo...
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.666 + RM_GOPATH=0
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.666 + TMP_GOPATH=
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.666 + : /build
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.666 + '[' -z '' ']'
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.666 ++ mktemp -d
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.673 + export GOPATH=/tmp/tmp.Q9MgxdD7a8
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.673 + GOPATH=/tmp/tmp.Q9MgxdD7a8
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.674 + RM_GOPATH=1
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.675 ++ dirname ./install.sh
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.677 + dir=.
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.677 + bin=tomlv
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.677 + shift
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.677 + '[' '!' -f ./tomlv.installer ']'
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.678 + . ./tomlv.installer
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.678 ++ : 3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.679 + install_tomlv
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.679 + echo 'Install tomlv version 3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005'
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.679 Install tomlv version 3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.679 + git clone https://github.com/BurntSushi/toml.git /tmp/tmp.Q9MgxdD7a8/src/github.com/BurntSushi/toml
14:35:57 [2020-01-10T14:35:57.891Z] #33 0.685 Cloning into '/tmp/tmp.Q9MgxdD7a8/src/github.com/BurntSushi/toml'...
14:35:57 [2020-01-10T14:35:57.891Z] #33 1.334 + cd /tmp/tmp.Q9MgxdD7a8/src/github.com/BurntSushi/toml
14:35:57 [2020-01-10T14:35:57.891Z] #33 1.337 + git checkout -q 3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005
14:35:57 [2020-01-10T14:35:57.891Z] #33 1.350 + go build -v -buildmode=pie -o /build/tomlv github.com/BurntSushi/toml/cmd/tomlv
14:35:57 [2020-01-10T14:35:57.891Z] #33 2.604 github.com/BurntSushi/toml
14:35:57 [2020-01-10T14:35:57.891Z] #33 6.479 github.com/BurntSushi/toml/cmd/tomlv
14:35:58 [2020-01-10T14:35:58.309Z] #33 ...
14:35:58 [2020-01-10T14:35:58.309Z] 
14:35:58 [2020-01-10T14:35:58.309Z] #41 [registry 2/2] RUN --mount=type=cache,target=/root/.cache/go-build     -...
14:35:58 [2020-01-10T14:35:58.309Z] #41 11.79 + git checkout -q 47a064d4195a9b56133891bbb13620c3ac83a827
14:35:58 [2020-01-10T14:35:58.309Z] #41 13.15 + GOPATH=/go/src/github.com/docker/distribution/Godeps/_workspace:/go go build -buildmode=pie -o /build/registry-v2 github.com/docker/distribution/cmd/registry
14:35:59 [2020-01-10T14:35:59.132Z] #41 ...
14:35:59 [2020-01-10T14:35:59.132Z] 
14:35:59 [2020-01-10T14:35:59.132Z] #33 [tomlv 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     --mo...
14:35:59 [2020-01-10T14:35:59.132Z] #33 DONE 11.5s
14:35:59 [2020-01-10T14:35:59.132Z] 
14:35:59 [2020-01-10T14:35:59.132Z] #59 [containerd 1/4] RUN --mount=type=cache,sharing=locked,id=moby-container...
14:35:59 [2020-01-10T14:35:59.132Z] #59 6.810 Reading package lists...
14:35:59 [2020-01-10T14:35:59.132Z] #59 11.15 Building dependency tree...
14:35:59 [2020-01-10T14:35:59.132Z] #59 11.66 Reading state information...
14:35:59 [2020-01-10T14:35:59.132Z] #59 12.44 The following additional packages will be installed:
14:35:59 [2020-01-10T14:35:59.132Z] #59 12.44   libbtrfs0
14:35:59 [2020-01-10T14:35:59.132Z] #59 12.54 The following NEW packages will be installed:
14:35:59 [2020-01-10T14:35:59.132Z] #59 12.55   libbtrfs-dev libbtrfs0
14:35:59 [2020-01-10T14:35:59.132Z] #59 12.66 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
14:35:59 [2020-01-10T14:35:59.132Z] #59 12.66 Need to get 118 kB of archives.
14:35:59 [2020-01-10T14:35:59.132Z] #59 12.66 After this operation, 390 kB of additional disk space will be used.
14:35:59 [2020-01-10T14:35:59.132Z] #59 12.66 Get:1 http://cdn-fastly.deb.debian.org/debian buster/main s390x libbtrfs0 s390x 4.20.1-2 [41.6 kB]
14:35:59 [2020-01-10T14:35:59.132Z] #59 12.68 Get:2 http://cdn-fastly.deb.debian.org/debian buster/main s390x libbtrfs-dev s390x 4.20.1-2 [76.9 kB]
14:35:59 [2020-01-10T14:35:59.132Z] #59 13.56 debconf: delaying package configuration, since apt-utils is not installed
14:35:59 [2020-01-10T14:35:59.132Z] #59 13.65 Fetched 118 kB in 0s (1363 kB/s)
14:35:59 [2020-01-10T14:35:59.132Z] #59 13.75 Selecting previously unselected package libbtrfs0.
14:35:59 [2020-01-10T14:35:59.132Z] #59 13.75 (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.)
14:35:59 [2020-01-10T14:35:59.132Z] #59 13.94 Preparing to unpack .../libbtrfs0_4.20.1-2_s390x.deb ...
14:35:59 [2020-01-10T14:35:59.132Z] #59 13.95 Unpacking libbtrfs0 (4.20.1-2) ...
14:35:59 [2020-01-10T14:35:59.132Z] #59 13.99 Selecting previously unselected package libbtrfs-dev.
14:35:59 [2020-01-10T14:35:59.132Z] #59 13.99 Preparing to unpack .../libbtrfs-dev_4.20.1-2_s390x.deb ...
14:35:59 [2020-01-10T14:35:59.132Z] #59 14.00 Unpacking libbtrfs-dev (4.20.1-2) ...
14:35:59 [2020-01-10T14:35:59.132Z] #59 14.29 Setting up libbtrfs0 (4.20.1-2) ...
14:35:59 [2020-01-10T14:35:59.132Z] #59 14.37 Setting up libbtrfs-dev (4.20.1-2) ...
14:35:59 [2020-01-10T14:35:59.132Z] #59 14.40 Processing triggers for libc-bin (2.28-10) ...
14:35:59 [2020-01-10T14:35:59.971Z] #59 ...
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #68 [vpnkit 1/1] FROM docker.io/djs55/vpnkit@sha256:e508a17cfacc8fd39261d5b4...
14:35:59 [2020-01-10T14:35:59.971Z] #68 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #27 [frozen-images 3/3] RUN /download-frozen-image-v2.sh /build         buil...
14:35:59 [2020-01-10T14:35:59.971Z] #27 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #12 [dev 2/25] RUN useradd --create-home --gid docker unprivilegeduser
14:35:59 [2020-01-10T14:35:59.971Z] #12 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #29 [swagger 1/2] WORKDIR /go/src/github.com/go-swagger/go-swagger
14:35:59 [2020-01-10T14:35:59.971Z] #29 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #11 [dev 1/25] RUN groupadd -r docker
14:35:59 [2020-01-10T14:35:59.971Z] #11 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #28 [dev 11/25] COPY --from=frozen-images /build/ /docker-frozen-images
14:35:59 [2020-01-10T14:35:59.971Z] #28 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #16 [dev 6/25] RUN ldconfig
14:35:59 [2020-01-10T14:35:59.971Z] #16 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #13 [dev 3/25] RUN ln -sfv /go/src/github.com/docker/docker/.bashrc ~/.bashr...
14:35:59 [2020-01-10T14:35:59.971Z] #13 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #26 [frozen-images 2/3] COPY contrib/download-frozen-image-v2.sh /
14:35:59 [2020-01-10T14:35:59.971Z] #26 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #14 [dev 4/25] RUN echo "source /usr/share/bash-completion/bash_completion" ...
14:35:59 [2020-01-10T14:35:59.971Z] #14 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #24 [dev 10/25] COPY --from=dockercli     /build/ /usr/local/cli
14:35:59 [2020-01-10T14:35:59.971Z] #24 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #25 [frozen-images 1/3] RUN --mount=type=cache,sharing=locked,id=moby-frozen...
14:35:59 [2020-01-10T14:35:59.971Z] #25 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #18 [dev 8/25] RUN update-alternatives --set iptables  /usr/sbin/iptables-le...
14:35:59 [2020-01-10T14:35:59.971Z] #18 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #30 [swagger 2/2] RUN --mount=type=cache,target=/root/.cache/go-build     --...
14:35:59 [2020-01-10T14:35:59.971Z] #30 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #17 [dev 7/25] RUN --mount=type=cache,sharing=locked,id=moby-dev-aptlib,targ...
14:35:59 [2020-01-10T14:35:59.971Z] #17 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #15 [dev 5/25] RUN ln -s /usr/local/completion/bash/docker /etc/bash_complet...
14:35:59 [2020-01-10T14:35:59.971Z] #15 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #19 [dev 9/25] RUN pip3 install yamllint==1.16.0
14:35:59 [2020-01-10T14:35:59.971Z] #19 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #31 [dev 12/25] COPY --from=swagger       /build/ /usr/local/bin/
14:35:59 [2020-01-10T14:35:59.971Z] #31 CACHED
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #34 [dev 13/25] COPY --from=tomlv         /build/ /usr/local/bin/
14:35:59 [2020-01-10T14:35:59.971Z] #34 DONE 0.1s
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #59 [containerd 1/4] RUN --mount=type=cache,sharing=locked,id=moby-container...
14:35:59 [2020-01-10T14:35:59.971Z] #59 DONE 15.1s
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #60 [containerd 2/4] COPY hack/dockerfile/install/install.sh ./install.sh
14:35:59 [2020-01-10T14:35:59.971Z] #60 DONE 0.1s
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #35 [tini 1/4] RUN --mount=type=cache,sharing=locked,id=moby-tini-aptlib,tar...
14:35:59 [2020-01-10T14:35:59.971Z] #35 7.299 Reading package lists...
14:35:59 [2020-01-10T14:35:59.971Z] #35 10.87 Building dependency tree...
14:35:59 [2020-01-10T14:35:59.971Z] #35 11.76 Reading state information...
14:35:59 [2020-01-10T14:35:59.971Z] #35 12.53 The following additional packages will be installed:
14:35:59 [2020-01-10T14:35:59.971Z] #35 12.54   cmake-data libarchive13 libicu63 libjsoncpp1 librhash0 libuv1 libxml2 xxd
14:35:59 [2020-01-10T14:35:59.971Z] #35 12.54 Suggested packages:
14:35:59 [2020-01-10T14:35:59.971Z] #35 12.54   cmake-doc ninja-build lrzip
14:35:59 [2020-01-10T14:35:59.971Z] #35 12.54 Recommended packages:
14:35:59 [2020-01-10T14:35:59.971Z] #35 12.54   vim | vim-gtk | vim-gtk3 | vim-athena | vim-nox | vim-tiny
14:35:59 [2020-01-10T14:35:59.971Z] #35 13.55 The following NEW packages will be installed:
14:35:59 [2020-01-10T14:35:59.971Z] #35 13.56   cmake cmake-data libarchive13 libicu63 libjsoncpp1 librhash0 libuv1 libxml2
14:35:59 [2020-01-10T14:35:59.971Z] #35 13.56   vim-common xxd
14:35:59 [2020-01-10T14:35:59.971Z] #35 13.67 0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
14:35:59 [2020-01-10T14:35:59.971Z] #35 13.67 Need to get 13.9 MB of archives.
14:35:59 [2020-01-10T14:35:59.971Z] #35 13.67 After this operation, 62.1 MB of additional disk space will be used.
14:35:59 [2020-01-10T14:35:59.971Z] #35 13.67 Get:1 http://cdn-fastly.deb.debian.org/debian buster/main s390x xxd s390x 2:8.1.0875-5 [139 kB]
14:35:59 [2020-01-10T14:35:59.971Z] #35 13.72 Get:2 http://cdn-fastly.deb.debian.org/debian buster/main s390x vim-common all 2:8.1.0875-5 [195 kB]
14:35:59 [2020-01-10T14:35:59.971Z] #35 13.74 Get:3 http://cdn-fastly.deb.debian.org/debian buster/main s390x cmake-data all 3.13.4-1 [1476 kB]
14:35:59 [2020-01-10T14:35:59.971Z] #35 13.83 Get:4 http://cdn-fastly.deb.debian.org/debian buster/main s390x libicu63 s390x 63.1-6 [8030 kB]
14:35:59 [2020-01-10T14:35:59.971Z] #35 15.00 Get:5 http://cdn-fastly.deb.debian.org/debian buster/main s390x libxml2 s390x 2.9.4+dfsg1-7+b3 [606 kB]
14:35:59 [2020-01-10T14:35:59.971Z] #35 15.05 Get:6 http://cdn-fastly.deb.debian.org/debian buster/main s390x libarchive13 s390x 3.3.3-4+deb10u1 [290 kB]
14:35:59 [2020-01-10T14:35:59.971Z] #35 15.14 Get:7 http://cdn-fastly.deb.debian.org/debian buster/main s390x libjsoncpp1 s390x 1.7.4-3 [73.6 kB]
14:35:59 [2020-01-10T14:35:59.971Z] #35 15.15 Get:8 http://cdn-fastly.deb.debian.org/debian buster/main s390x librhash0 s390x 1.3.8-1 [121 kB]
14:35:59 [2020-01-10T14:35:59.971Z] #35 15.18 Get:9 http://cdn-fastly.deb.debian.org/debian buster/main s390x libuv1 s390x 1.24.1-1 [104 kB]
14:35:59 [2020-01-10T14:35:59.971Z] #35 15.18 Get:10 http://cdn-fastly.deb.debian.org/debian buster/main s390x cmake s390x 3.13.4-1 [2912 kB]
14:35:59 [2020-01-10T14:35:59.971Z] #35 ...
14:35:59 [2020-01-10T14:35:59.971Z] 
14:35:59 [2020-01-10T14:35:59.971Z] #61 [containerd 3/4] COPY hack/dockerfile/install/containerd.installer ./
14:35:59 [2020-01-10T14:35:59.971Z] #61 DONE 0.1s
14:36:00 [2020-01-10T14:36:00.358Z] 
14:36:00 [2020-01-10T14:36:00.358Z] #62 [containerd 4/4] RUN --mount=type=cache,target=/root/.cache/go-build    ...
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.285 + RM_GOPATH=0
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.286 + TMP_GOPATH=
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.286 + : /build
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.286 + '[' -z '' ']'
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.287 ++ mktemp -d
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.289 + export GOPATH=/tmp/tmp.XZRjOLe9HZ
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.290 + GOPATH=/tmp/tmp.XZRjOLe9HZ
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.290 + RM_GOPATH=1
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.291 ++ dirname ./install.sh
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.293 + dir=.
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.293 + bin=containerd
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.294 + shift
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.294 + '[' '!' -f ./containerd.installer ']'
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.294 + . ./containerd.installer
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.295 ++ : ff48f57fc83a8c44cf4ad5d672424a98ba37ded6
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.298 + install_containerd
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.299 + echo 'Install containerd version ff48f57fc83a8c44cf4ad5d672424a98ba37ded6'
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.299 Install containerd version ff48f57fc83a8c44cf4ad5d672424a98ba37ded6
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.299 + git clone https://github.com/containerd/containerd.git /tmp/tmp.XZRjOLe9HZ/src/github.com/containerd/containerd
14:36:00 [2020-01-10T14:36:00.358Z] #62 0.306 Cloning into '/tmp/tmp.XZRjOLe9HZ/src/github.com/containerd/containerd'...
14:36:06 [2020-01-10T14:36:06.033Z] #62 ...
14:36:06 [2020-01-10T14:36:06.033Z] 
14:36:06 [2020-01-10T14:36:06.033Z] #71 [proxy 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     --mo...
14:36:06 [2020-01-10T14:36:06.033Z] #71 13.04 Checking out files:  65% (1303/1997)   
Checking out files:  66% (1319/1997)   
Checking out files:  67% (1338/1997)   
Checking out files:  68% (1358/1997)   
Checking out files:  69% (1378/1997)   
Checking out files:  70% (1398/1997)   
Checking out files:  71% (1418/1997)   
Checking out files:  72% (1438/1997)   
Checking out files:  73% (1458/1997)   
Checking out files:  74% (1478/1997)   
Checking out files:  75% (1498/1997)   
Checking out files:  76% (1518/1997)   
Checking out files:  77% (1538/1997)   
Checking out files:  78% (1558/1997)   
Checking out files:  79% (1578/1997)   
Checking out files:  80% (1598/1997)   
Checking out files:  81% (1618/1997)   
Checking out files:  82% (1638/1997)   
Checking out files:  83% (1658/1997)   
Checking out files:  84% (1678/1997)   
Checking out files:  85% (1698/1997)   
Checking out files:  86% (1718/1997)   
Checking out files:  87% (1738/1997)   
Checking out files:  88% (1758/1997)   
Checking out files:  89% (1778/1997)   
Checking out files:  90% (1798/1997)   
Checking out files:  91% (1818/1997)   
Checking out files:  92% (1838/1997)   
Checking out files:  93% (1858/1997)   
Checking out files:  94% (1878/1997)   
Checking out files:  95% (1898/1997)   
Checking out files:  96% (1918/1997)   
Checking out files:  97% (1938/1997)   
Checking out files:  98% (1958/1997)   
Checking out files:  99% (1978/1997)   
Checking out files: 100% (1997/1997)   
Checking out files: 100% (1997/1997), done.
14:36:06 [2020-01-10T14:36:06.033Z] #71 13.32 + cd /tmp/tmp.3DMHVtKarh/src/github.com/docker/libnetwork
14:36:06 [2020-01-10T14:36:06.033Z] #71 13.32 + git checkout -q 90afbb01e1d8acacb505a092744ea42b9f167377
14:36:06 [2020-01-10T14:36:06.033Z] #71 13.46 + go build -ldflags= -o /build/docker-proxy github.com/docker/libnetwork/cmd/proxy
14:36:06 [2020-01-10T14:36:06.033Z] #71 DONE 18.0s
14:36:06 [2020-01-10T14:36:06.033Z] 
14:36:06 [2020-01-10T14:36:06.033Z] #35 [tini 1/4] RUN --mount=type=cache,sharing=locked,id=moby-tini-aptlib,tar...
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.19 debconf: delaying package configuration, since apt-utils is not installed
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.34 Fetched 13.9 MB in 2s (8138 kB/s)
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.42 Selecting previously unselected package xxd.
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.42 (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.)
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.47 Preparing to unpack .../0-xxd_2%3a8.1.0875-5_s390x.deb ...
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.48 Unpacking xxd (2:8.1.0875-5) ...
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.59 Selecting previously unselected package vim-common.
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.59 Preparing to unpack .../1-vim-common_2%3a8.1.0875-5_all.deb ...
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.61 Unpacking vim-common (2:8.1.0875-5) ...
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.84 Selecting previously unselected package cmake-data.
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.84 Preparing to unpack .../2-cmake-data_3.13.4-1_all.deb ...
14:36:06 [2020-01-10T14:36:06.033Z] #35 16.84 Unpacking cmake-data (3.13.4-1) ...
14:36:06 [2020-01-10T14:36:06.033Z] #35 18.69 Selecting previously unselected package libicu63:s390x.
14:36:06 [2020-01-10T14:36:06.033Z] #35 18.69 Preparing to unpack .../3-libicu63_63.1-6_s390x.deb ...
14:36:06 [2020-01-10T14:36:06.033Z] #35 18.69 Unpacking libicu63:s390x (63.1-6) ...
14:36:06 [2020-01-10T14:36:06.033Z] #35 ...
14:36:06 [2020-01-10T14:36:06.033Z] 
14:36:06 [2020-01-10T14:36:06.033Z] #47 [vndr 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     --mou...
14:36:06 [2020-01-10T14:36:06.033Z] #47 8.204 github.com/LK4D4/vndr
14:36:06 [2020-01-10T14:36:06.033Z] #47 ...
14:36:06 [2020-01-10T14:36:06.033Z] 
14:36:06 [2020-01-10T14:36:06.033Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:06 [2020-01-10T14:36:06.033Z] #44 12.71 make[1]: Nothing to be done for 'all'.
14:36:06 [2020-01-10T14:36:06.033Z] #44 13.93   CC       images/stats.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 14.22   CC       images/core.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 15.13   CC       images/core-x86.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 15.32   CC       images/core-arm.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 15.58   CC       images/core-aarch64.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 16.12   CC       images/core-ppc64.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 16.56   CC       images/core-s390.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 16.97   CC       images/cpuinfo.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 17.24   CC       images/inventory.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 17.42   CC       images/fdinfo.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 17.78   CC       images/fown.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 17.96   CC       images/ns.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 18.09   CC       images/regfile.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 18.25   CC       images/ghost-file.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 18.41   CC       images/fifo.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 18.51   CC       images/remap-file-path.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 18.74   CC       images/eventfd.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 18.87   CC       images/eventpoll.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 19.15   CC       images/fh.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 19.43   CC       images/fsnotify.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 19.83   CC       images/signalfd.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 19.97   CC       images/fs.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 20.11   CC       images/pstree.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 20.24   CC       images/pipe.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 20.46   CC       images/tcp-stream.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 20.67   CC       images/sk-packet.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 20.93   CC       images/mnt.o
14:36:06 [2020-01-10T14:36:06.033Z] #44 21.26   CC       images/pipe-data.o
14:36:06 [2020-01-10T14:36:06.483Z] #44 21.48   CC       images/sa.o
14:36:06 [2020-01-10T14:36:06.483Z] #44 21.65   CC       images/timer.o
14:36:06 [2020-01-10T14:36:06.483Z] #44 21.86   CC       images/timerfd.o
14:36:06 [2020-01-10T14:36:06.887Z] #44 22.04   CC       images/mm.o
14:36:06 [2020-01-10T14:36:06.887Z] #44 22.21   CC       images/sk-opts.o
14:36:06 [2020-01-10T14:36:06.887Z] #44 22.32   CC       images/sk-unix.o
14:36:07 [2020-01-10T14:36:07.282Z] #44 22.56   CC       images/sk-inet.o
14:36:07 [2020-01-10T14:36:07.696Z] #44 22.80   CC       images/tun.o
14:36:07 [2020-01-10T14:36:07.696Z] #44 22.97   CC       images/sk-netlink.o
14:36:08 [2020-01-10T14:36:08.116Z] #44 23.18   CC       images/packet-sock.o
14:36:08 [2020-01-10T14:36:08.116Z] #44 23.35   CC       images/ipc-var.o
14:36:08 [2020-01-10T14:36:08.116Z] #44 23.46   CC       images/ipc-desc.o
14:36:08 [2020-01-10T14:36:08.720Z] #44 ...
14:36:08 [2020-01-10T14:36:08.720Z] 
14:36:08 [2020-01-10T14:36:08.720Z] #35 [tini 1/4] RUN --mount=type=cache,sharing=locked,id=moby-tini-aptlib,tar...
14:36:08 [2020-01-10T14:36:08.720Z] #35 23.49 Selecting previously unselected package libxml2:s390x.
14:36:08 [2020-01-10T14:36:08.720Z] #35 23.50 Preparing to unpack .../4-libxml2_2.9.4+dfsg1-7+b3_s390x.deb ...
14:36:08 [2020-01-10T14:36:08.720Z] #35 23.50 Unpacking libxml2:s390x (2.9.4+dfsg1-7+b3) ...
14:36:08 [2020-01-10T14:36:08.720Z] #35 ...
14:36:08 [2020-01-10T14:36:08.720Z] 
14:36:08 [2020-01-10T14:36:08.720Z] #57 [runc 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     --mou...
14:36:08 [2020-01-10T14:36:08.720Z] #57 11.10 CGO_ENABLED=1 go build  -tags "seccomp apparmor selinux  netgo osusergo static_build" -installsuffix netgo -ldflags "-w -extldflags -static -X main.gitCommit="d736ef14f0288d6993a1845745d6756cfc9ddd5a" -X main.version=1.0.0-rc9 " -o runc .
14:36:08 [2020-01-10T14:36:08.720Z] #57 ...
14:36:08 [2020-01-10T14:36:08.720Z] 
14:36:08 [2020-01-10T14:36:08.720Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:08 [2020-01-10T14:36:08.720Z] #44 23.67   CC       images/ipc-shm.o
14:36:08 [2020-01-10T14:36:08.720Z] #44 24.00   CC       images/ipc-msg.o
14:36:09 [2020-01-10T14:36:09.236Z] #44 ...
14:36:09 [2020-01-10T14:36:09.236Z] 
14:36:09 [2020-01-10T14:36:09.236Z] #47 [vndr 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     --mou...
14:36:09 [2020-01-10T14:36:09.236Z] #47 DONE 21.9s
14:36:09 [2020-01-10T14:36:09.236Z] 
14:36:09 [2020-01-10T14:36:09.236Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:09 [2020-01-10T14:36:09.236Z] #44 24.39   CC       images/ipc-sem.o
14:36:09 [2020-01-10T14:36:09.853Z] #44 24.78   CC       images/utsns.o
14:36:09 [2020-01-10T14:36:09.853Z] #44 24.87   CC       images/creds.o
14:36:10 [2020-01-10T14:36:10.506Z] #44 25.25   CC       images/vma.o
14:36:10 [2020-01-10T14:36:10.506Z] #44 25.62   CC       images/netdev.o
14:36:10 [2020-01-10T14:36:10.902Z] #44 26.04   CC       images/tty.o
14:36:11 [2020-01-10T14:36:11.308Z] #44 26.35   CC       images/file-lock.o
14:36:11 [2020-01-10T14:36:11.308Z] #44 26.51   CC       images/rlimit.o
14:36:11 [2020-01-10T14:36:11.308Z] #44 26.58   CC       images/pagemap.o
14:36:11 [2020-01-10T14:36:11.308Z] #44 26.70   CC       images/siginfo.o
14:36:11 [2020-01-10T14:36:11.698Z] #44 26.88   CC       images/rpc.o
14:36:12 [2020-01-10T14:36:12.114Z] #44 ...
14:36:12 [2020-01-10T14:36:12.114Z] 
14:36:12 [2020-01-10T14:36:12.114Z] #35 [tini 1/4] RUN --mount=type=cache,sharing=locked,id=moby-tini-aptlib,tar...
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.03 Selecting previously unselected package libarchive13:s390x.
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.03 Preparing to unpack .../5-libarchive13_3.3.3-4+deb10u1_s390x.deb ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.09 Unpacking libarchive13:s390x (3.3.3-4+deb10u1) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.55 Selecting previously unselected package libjsoncpp1:s390x.
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.55 Preparing to unpack .../6-libjsoncpp1_1.7.4-3_s390x.deb ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.55 Unpacking libjsoncpp1:s390x (1.7.4-3) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.80 Selecting previously unselected package librhash0:s390x.
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.80 Preparing to unpack .../7-librhash0_1.3.8-1_s390x.deb ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.81 Unpacking librhash0:s390x (1.3.8-1) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.90 Selecting previously unselected package libuv1:s390x.
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.90 Preparing to unpack .../8-libuv1_1.24.1-1_s390x.deb ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 24.93 Unpacking libuv1:s390x (1.24.1-1) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 25.22 Selecting previously unselected package cmake.
14:36:12 [2020-01-10T14:36:12.114Z] #35 25.22 Preparing to unpack .../9-cmake_3.13.4-1_s390x.deb ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 25.23 Unpacking cmake (3.13.4-1) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.04 Setting up libicu63:s390x (63.1-6) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.07 Setting up xxd (2:8.1.0875-5) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.08 Setting up libuv1:s390x (1.24.1-1) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.08 Setting up vim-common (2:8.1.0875-5) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.10 Setting up librhash0:s390x (1.3.8-1) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.10 Setting up cmake-data (3.13.4-1) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.14 Setting up libxml2:s390x (2.9.4+dfsg1-7+b3) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.14 Setting up libjsoncpp1:s390x (1.7.4-3) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.15 Setting up libarchive13:s390x (3.3.3-4+deb10u1) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.15 Setting up cmake (3.13.4-1) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.18 Processing triggers for libc-bin (2.28-10) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 27.23 Processing triggers for mime-support (3.62) ...
14:36:12 [2020-01-10T14:36:12.114Z] #35 DONE 27.5s
14:36:12 [2020-01-10T14:36:12.114Z] 
14:36:12 [2020-01-10T14:36:12.114Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:12 [2020-01-10T14:36:12.114Z] #44 27.47   CC       images/ext-file.o
14:36:12 [2020-01-10T14:36:12.516Z] #44 27.57   CC       images/cgroup.o
14:36:12 [2020-01-10T14:36:12.516Z] #44 ...
14:36:12 [2020-01-10T14:36:12.516Z] 
14:36:12 [2020-01-10T14:36:12.516Z] #36 [tini 2/4] COPY hack/dockerfile/install/install.sh ./install.sh
14:36:12 [2020-01-10T14:36:12.516Z] #36 DONE 0.1s
14:36:12 [2020-01-10T14:36:12.516Z] 
14:36:12 [2020-01-10T14:36:12.516Z] #37 [tini 3/4] COPY hack/dockerfile/install/tini.installer ./
14:36:12 [2020-01-10T14:36:12.516Z] #37 DONE 0.1s
14:36:12 [2020-01-10T14:36:12.516Z] 
14:36:12 [2020-01-10T14:36:12.516Z] #38 [tini 4/4] RUN --mount=type=cache,target=/root/.cache/go-build     --mou...
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.331 + RM_GOPATH=0
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.332 + TMP_GOPATH=
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.332 + : /build
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.332 + '[' -z '' ']'
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.332 ++ mktemp -d
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.334 + export GOPATH=/tmp/tmp.KIDlrHHg4Z
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.334 + GOPATH=/tmp/tmp.KIDlrHHg4Z
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.334 + RM_GOPATH=1
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.334 ++ dirname ./install.sh
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.335 + dir=.
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.335 + bin=tini
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.336 Install tini version fec3683b971d9c3ef73f284f176672c44b448662
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.336 + shift
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.336 + '[' '!' -f ./tini.installer ']'
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.336 + . ./tini.installer
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.336 ++ : fec3683b971d9c3ef73f284f176672c44b448662
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.336 + install_tini
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.336 + echo 'Install tini version fec3683b971d9c3ef73f284f176672c44b448662'
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.336 + git clone https://github.com/krallin/tini.git /tmp/tmp.KIDlrHHg4Z/tini
14:36:12 [2020-01-10T14:36:12.938Z] #38 0.337 Cloning into '/tmp/tmp.KIDlrHHg4Z/tini'...
14:36:12 [2020-01-10T14:36:12.938Z] #38 ...
14:36:12 [2020-01-10T14:36:12.938Z] 
14:36:12 [2020-01-10T14:36:12.938Z] #53 [golangci_lint 3/3] RUN --mount=type=cache,target=/root/.cache/go-build ...
14:36:12 [2020-01-10T14:36:12.938Z] #53 15.68 + cd /tmp/tmp.yRmG0DYT38/src/github.com/golangci/golangci-lint/
14:36:12 [2020-01-10T14:36:12.938Z] #53 15.68 + git checkout -q v1.20.0
14:36:12 [2020-01-10T14:36:12.938Z] #53 16.15 ++ git describe --tags
14:36:12 [2020-01-10T14:36:12.938Z] #53 16.16 + version=v1.20.0
14:36:12 [2020-01-10T14:36:12.938Z] #53 16.16 ++ git rev-parse --short HEAD
14:36:12 [2020-01-10T14:36:12.938Z] #53 16.16 + commit=cc98739
14:36:12 [2020-01-10T14:36:12.938Z] #53 16.16 ++ git show -s --format=%cd
14:36:12 [2020-01-10T14:36:12.938Z] #53 16.17 + commitDate='Tue Oct 8 14:38:32 2019 +0300'
14:36:12 [2020-01-10T14:36:12.938Z] #53 16.17 + go build -buildmode=pie -ldflags '-s -w -X "main.version=v1.20.0" -X "main.commit=cc98739" -X "main.date=Tue Oct 8 14:38:32 2019 +0300"' -o /build/golangci-lint github.com/golangci/golangci-lint/cmd/golangci-lint
14:36:12 [2020-01-10T14:36:12.938Z] #53 ...
14:36:12 [2020-01-10T14:36:12.938Z] 
14:36:12 [2020-01-10T14:36:12.938Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:12 [2020-01-10T14:36:12.938Z] #44 27.97   CC       images/userns.o
14:36:12 [2020-01-10T14:36:12.938Z] #44 28.10   CC       images/google/protobuf/descriptor.o
14:36:13 [2020-01-10T14:36:13.780Z] #44 28.95   CC       images/opts.o
14:36:13 [2020-01-10T14:36:13.780Z] #44 29.04   CC       images/seccomp.o
14:36:14 [2020-01-10T14:36:14.206Z] #44 29.19   CC       images/binfmt-misc.o
14:36:14 [2020-01-10T14:36:14.206Z] #44 29.41   CC       images/time.o
14:36:14 [2020-01-10T14:36:14.206Z] #44 29.50   CC       images/sysctl.o
14:36:14 [2020-01-10T14:36:14.206Z] #44 29.59   CC       images/autofs.o
14:36:14 [2020-01-10T14:36:14.606Z] #44 29.71   CC       images/macvlan.o
14:36:14 [2020-01-10T14:36:14.606Z] #44 29.83   CC       images/sit.o
14:36:14 [2020-01-10T14:36:14.606Z] #44 29.94   LINK     images/built-in.o
14:36:14 [2020-01-10T14:36:14.606Z] #44 30.06   GEN      compel/include/asm
14:36:14 [2020-01-10T14:36:14.606Z] #44 30.06   GEN      compel/include/version.h
14:36:14 [2020-01-10T14:36:14.990Z] #44 30.09 touch .config
14:36:14 [2020-01-10T14:36:14.990Z] #44 30.10   GEN      include/common/config.h
14:36:14 [2020-01-10T14:36:14.990Z] #44 30.15   DEP      compel/arch/s390/plugins/std/syscalls/syscalls-s390.d
14:36:14 [2020-01-10T14:36:14.990Z] #44 30.38   GEN      compel/plugins/include/uapi/std/syscall-codes.h
14:36:14 [2020-01-10T14:36:14.990Z] #44 30.38   GEN      compel/plugins/include/uapi/std/syscall.h
14:36:14 [2020-01-10T14:36:14.990Z] #44 30.40   GEN      compel/arch/s390/plugins/std/syscalls/syscalls.S
14:36:14 [2020-01-10T14:36:14.990Z] #44 30.43   DEP      compel/arch/s390/plugins/std/syscalls/syscalls.d
14:36:15 [2020-01-10T14:36:15.408Z] #44 30.45   DEP      compel/arch/s390/plugins/std/parasite-head.d
14:36:15 [2020-01-10T14:36:15.408Z] #44 30.46   GEN      compel/plugins/include/uapi/std/asm/syscall-types.h
14:36:15 [2020-01-10T14:36:15.408Z] #44 30.47   DEP      compel/plugins/std/infect.d
14:36:15 [2020-01-10T14:36:15.408Z] #44 30.68   DEP      compel/plugins/std/string.d
14:36:15 [2020-01-10T14:36:15.408Z] #44 30.72   DEP      compel/plugins/std/log.d
14:36:15 [2020-01-10T14:36:15.408Z] #44 30.78   DEP      compel/plugins/std/fds.d
14:36:15 [2020-01-10T14:36:15.802Z] #44 30.87   DEP      compel/plugins/std/std.d
14:36:15 [2020-01-10T14:36:15.802Z] #44 31.00   DEP      compel/plugins/shmem/shmem.d
14:36:15 [2020-01-10T14:36:15.802Z] #44 31.06   DEP      compel/plugins/fds/fds.d
14:36:15 [2020-01-10T14:36:15.802Z] #44 31.12   CC       compel/plugins/std/std.o
14:36:16 [2020-01-10T14:36:16.643Z] #44 31.40   CC       compel/plugins/std/fds.o
14:36:17 [2020-01-10T14:36:17.348Z] #44 31.85   CC       compel/plugins/std/log.o
14:36:17 [2020-01-10T14:36:17.800Z] #44 32.72   CC       compel/plugins/std/string.o
14:36:17 [2020-01-10T14:36:17.800Z] #44 ...
14:36:17 [2020-01-10T14:36:17.800Z] 
14:36:17 [2020-01-10T14:36:17.800Z] #38 [tini 4/4] RUN --mount=type=cache,target=/root/.cache/go-build     --mou...
14:36:17 [2020-01-10T14:36:17.800Z] #38 0.832 + cd /tmp/tmp.KIDlrHHg4Z/tini
14:36:17 [2020-01-10T14:36:17.800Z] #38 0.834 + git checkout -q fec3683b971d9c3ef73f284f176672c44b448662
14:36:17 [2020-01-10T14:36:17.800Z] #38 0.855 + cmake .
14:36:17 [2020-01-10T14:36:17.800Z] #38 1.088 -- The C compiler identification is GNU 8.3.0
14:36:17 [2020-01-10T14:36:17.800Z] #38 1.129 -- Check for working C compiler: /usr/bin/cc
14:36:17 [2020-01-10T14:36:17.800Z] #38 1.367 -- Check for working C compiler: /usr/bin/cc -- works
14:36:17 [2020-01-10T14:36:17.800Z] #38 1.369 -- Detecting C compiler ABI info
14:36:17 [2020-01-10T14:36:17.800Z] #38 1.669 -- Detecting C compiler ABI info - done
14:36:17 [2020-01-10T14:36:17.800Z] #38 1.681 -- Detecting C compile features
14:36:17 [2020-01-10T14:36:17.800Z] #38 2.622 -- Detecting C compile features - done
14:36:17 [2020-01-10T14:36:17.800Z] #38 2.638 -- Performing Test HAS_BUILTIN_FORTIFY
14:36:17 [2020-01-10T14:36:17.800Z] #38 2.821 -- Performing Test HAS_BUILTIN_FORTIFY - Failed
14:36:17 [2020-01-10T14:36:17.800Z] #38 2.898 -- Configuring done
14:36:17 [2020-01-10T14:36:17.800Z] #38 2.906 -- Generating done
14:36:17 [2020-01-10T14:36:17.800Z] #38 2.909 -- Build files have been written to: /tmp/tmp.KIDlrHHg4Z/tini
14:36:17 [2020-01-10T14:36:17.800Z] #38 2.914 + make tini-static
14:36:17 [2020-01-10T14:36:17.800Z] #38 3.413 Scanning dependencies of target tini-static
14:36:17 [2020-01-10T14:36:17.800Z] #38 3.567 [ 50%] Building C object CMakeFiles/tini-static.dir/src/tini.c.o
14:36:17 [2020-01-10T14:36:17.800Z] #38 4.642 [100%] Linking C executable tini-static
14:36:17 [2020-01-10T14:36:17.800Z] #38 5.257 [100%] Built target tini-static
14:36:17 [2020-01-10T14:36:17.800Z] #38 5.371 + mkdir -p /build
14:36:17 [2020-01-10T14:36:17.800Z] #38 5.374 + cp tini-static /build/docker-init
14:36:17 [2020-01-10T14:36:17.800Z] #38 DONE 5.5s
14:36:17 [2020-01-10T14:36:17.800Z] 
14:36:17 [2020-01-10T14:36:17.800Z] #41 [registry 2/2] RUN --mount=type=cache,target=/root/.cache/go-build     -...
14:36:17 [2020-01-10T14:36:17.800Z] #41 30.17 + dpkg --print-architecture
14:36:17 [2020-01-10T14:36:17.800Z] #41 30.17 + git checkout -q ec87e9b6971d831f0eff752ddb54fb64693e51cd
14:36:17 [2020-01-10T14:36:17.800Z] #41 30.90 + GOPATH=/go/src/github.com/docker/distribution/Godeps/_workspace:/go
14:36:17 [2020-01-10T14:36:17.800Z] #41 30.90 + go build -buildmode=pie -o /build/registry-v2-schema1 github.com/docker/distribution/cmd/registry
14:36:19 [2020-01-10T14:36:19.139Z] #41 ...
14:36:19 [2020-01-10T14:36:19.139Z] 
14:36:19 [2020-01-10T14:36:19.139Z] #39 [dev 14/25] COPY --from=tini          /build/ /usr/local/bin/
14:36:19 [2020-01-10T14:36:19.139Z] #39 DONE 0.1s
14:36:19 [2020-01-10T14:36:19.531Z] 
14:36:19 [2020-01-10T14:36:19.531Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:19 [2020-01-10T14:36:19.531Z] #44 33.86   CC       compel/plugins/std/infect.o
14:36:19 [2020-01-10T14:36:19.531Z] #44 34.45   CC       compel/arch/s390/plugins/std/parasite-head.o
14:36:19 [2020-01-10T14:36:19.531Z] #44 34.47   CC       compel/arch/s390/plugins/std/syscalls/syscalls.o
14:36:19 [2020-01-10T14:36:19.531Z] #44 34.50   CC       compel/arch/s390/plugins/std/syscalls/syscalls-s390.o
14:36:19 [2020-01-10T14:36:19.531Z] #44 34.58   AR       compel/plugins/std.lib.a
14:36:19 [2020-01-10T14:36:19.531Z] #44 34.68   CC       compel/plugins/fds/fds.o
14:36:19 [2020-01-10T14:36:19.531Z] #44 34.73   AR       compel/plugins/fds.lib.a
14:36:19 [2020-01-10T14:36:19.531Z] #44 34.75   HOSTDEP  compel/src/lib/log-host.d
14:36:19 [2020-01-10T14:36:19.531Z] #44 34.77   HOSTDEP  compel/src/lib/handle-elf-host.d
14:36:19 [2020-01-10T14:36:19.531Z] #44 34.85   HOSTDEP  compel/arch/s390/src/lib/handle-elf-host.d
14:36:19 [2020-01-10T14:36:19.910Z] #44 34.88   HOSTDEP  compel/src/main-host.d
14:36:19 [2020-01-10T14:36:19.910Z] #44 34.94   DEP      compel/src/lib/ptrace.d
14:36:19 [2020-01-10T14:36:19.910Z] #44 35.11   DEP      compel/src/lib/infect.d
14:36:19 [2020-01-10T14:36:19.910Z] #44 35.18   DEP      compel/src/lib/infect-util.d
14:36:19 [2020-01-10T14:36:19.910Z] #44 35.23   DEP      compel/src/lib/infect-rpc.d
14:36:20 [2020-01-10T14:36:20.286Z] #44 35.26   DEP      compel/arch/s390/src/lib/infect.d
14:36:20 [2020-01-10T14:36:20.286Z] #44 35.29   DEP      compel/arch/s390/src/lib/cpu.d
14:36:20 [2020-01-10T14:36:20.286Z] #44 35.32   DEP      compel/src/lib/log.d
14:36:20 [2020-01-10T14:36:20.286Z] #44 35.44   DEP      compel/src/main.d
14:36:20 [2020-01-10T14:36:20.286Z] #44 35.48   DEP      compel/src/lib/handle-elf.d
14:36:20 [2020-01-10T14:36:20.286Z] #44 35.51   DEP      compel/arch/s390/src/lib/handle-elf.d
14:36:20 [2020-01-10T14:36:20.286Z] #44 35.56   CC       compel/src/lib/log.o
14:36:20 [2020-01-10T14:36:20.286Z] #44 35.65   CC       compel/arch/s390/src/lib/cpu.o
14:36:20 [2020-01-10T14:36:20.680Z] #44 35.90   CC       compel/arch/s390/src/lib/infect.o
14:36:21 [2020-01-10T14:36:21.508Z] #44 36.47   CC       compel/src/lib/infect-rpc.o
14:36:21 [2020-01-10T14:36:21.508Z] #44 36.71   CC       compel/src/lib/infect-util.o
14:36:21 [2020-01-10T14:36:21.508Z] #44 36.84   CC       compel/src/lib/infect.o
14:36:22 [2020-01-10T14:36:22.843Z] #44 38.05   CC       compel/src/lib/ptrace.o
14:36:23 [2020-01-10T14:36:23.247Z] #44 38.25   AR       compel/libcompel.a
14:36:23 [2020-01-10T14:36:23.247Z] #44 38.32   HOSTCC   compel/src/main-host.o
14:36:23 [2020-01-10T14:36:23.247Z] #44 38.56   HOSTCC   compel/arch/s390/src/lib/handle-elf-host.o
14:36:23 [2020-01-10T14:36:23.940Z] #44 38.68   HOSTCC   compel/src/lib/handle-elf-host.o
14:36:23 [2020-01-10T14:36:23.940Z] #44 38.90   HOSTCC   compel/src/lib/log-host.o
14:36:23 [2020-01-10T14:36:23.940Z] #44 39.03   HOSTLINK compel/compel-host-bin
14:36:23 [2020-01-10T14:36:23.940Z] #44 39.10   DEP      soccr/soccr.d
14:36:23 [2020-01-10T14:36:23.940Z] #44 39.32   CC       soccr/soccr.o
14:36:25 [2020-01-10T14:36:25.284Z] #44 ...
14:36:25 [2020-01-10T14:36:25.284Z] 
14:36:25 [2020-01-10T14:36:25.284Z] #50 [gotestsum 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     ...
14:36:25 [2020-01-10T14:36:25.284Z] #50 26.81 + cd /tmp/tmp.O3CJfXdxad/src/gotest.tools/gotestsum
14:36:25 [2020-01-10T14:36:25.284Z] #50 26.81 + git checkout -q v0.3.5
14:36:25 [2020-01-10T14:36:25.284Z] #50 26.82 + go build -buildmode=pie -o /build/gotestsum gotest.tools/gotestsum
14:36:25 [2020-01-10T14:36:25.284Z] #50 ...
14:36:25 [2020-01-10T14:36:25.284Z] 
14:36:25 [2020-01-10T14:36:25.284Z] #62 [containerd 4/4] RUN --mount=type=cache,target=/root/.cache/go-build    ...
14:36:25 [2020-01-10T14:36:25.284Z] #62 21.04 Checking out files:  95% (2870/2994)   
Checking out files:  96% (2875/2994)   
Checking out files:  97% (2905/2994)   
Checking out files:  98% (2935/2994)   
Checking out files:  99% (2965/2994)   
Checking out files: 100% (2994/2994)   
Checking out files: 100% (2994/2994), done.
14:36:25 [2020-01-10T14:36:25.284Z] #62 21.14 + cd /tmp/tmp.XZRjOLe9HZ/src/github.com/containerd/containerd
14:36:25 [2020-01-10T14:36:25.284Z] #62 21.15 + git checkout -q ff48f57fc83a8c44cf4ad5d672424a98ba37ded6
14:36:25 [2020-01-10T14:36:25.284Z] #62 22.16 + export 'BUILDTAGS=netgo osusergo static_build'
14:36:25 [2020-01-10T14:36:25.284Z] #62 22.16 + BUILDTAGS='netgo osusergo static_build'
14:36:25 [2020-01-10T14:36:25.284Z] #62 22.16 + export EXTRA_FLAGS=-buildmode=pie
14:36:25 [2020-01-10T14:36:25.284Z] #62 22.16 + EXTRA_FLAGS=-buildmode=pie
14:36:25 [2020-01-10T14:36:25.284Z] #62 22.16 + export 'EXTRA_LDFLAGS=-extldflags "-fno-PIC -static"'
14:36:25 [2020-01-10T14:36:25.284Z] #62 22.16 + EXTRA_LDFLAGS='-extldflags "-fno-PIC -static"'
14:36:25 [2020-01-10T14:36:25.284Z] #62 22.16 + '[' '' = dynamic ']'
14:36:25 [2020-01-10T14:36:25.284Z] #62 22.16 + make
14:36:25 [2020-01-10T14:36:25.284Z] #62 22.48 + bin/ctr
14:36:28 [2020-01-10T14:36:28.709Z] #62 ...
14:36:28 [2020-01-10T14:36:28.709Z] 
14:36:28 [2020-01-10T14:36:28.709Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:28 [2020-01-10T14:36:28.709Z] #44 40.24   AR       soccr/libsoccr.a
14:36:28 [2020-01-10T14:36:28.709Z] #44 40.25 make[1]: 'soccr/libsoccr.a' is up to date.
14:36:28 [2020-01-10T14:36:28.709Z] #44 40.47   DEP      criu/arch/s390/sigframe.d
14:36:28 [2020-01-10T14:36:28.709Z] #44 40.53   DEP      criu/arch/s390/crtools.d
14:36:28 [2020-01-10T14:36:28.709Z] #44 40.64   DEP      criu/arch/s390/cpu.d
14:36:28 [2020-01-10T14:36:28.709Z] #44 40.76   CC       criu/arch/s390/cpu.o
14:36:28 [2020-01-10T14:36:28.709Z] #44 41.06   CC       criu/arch/s390/crtools.o
14:36:28 [2020-01-10T14:36:28.709Z] #44 41.72   CC       criu/arch/s390/sigframe.o
14:36:28 [2020-01-10T14:36:28.709Z] #44 41.84   LINK     criu/arch/s390/crtools.built-in.o
14:36:28 [2020-01-10T14:36:28.709Z] #44 41.87   DEP      criu/arch/s390/vdso-pie.d
14:36:28 [2020-01-10T14:36:28.709Z] #44 41.93   DEP      criu/pie/parasite-vdso.d
14:36:28 [2020-01-10T14:36:28.709Z] #44 42.03   DEP      criu/pie/util-vdso.d
14:36:28 [2020-01-10T14:36:28.709Z] #44 42.14   DEP      criu/pie/util.d
14:36:28 [2020-01-10T14:36:28.709Z] #44 42.27   CC       criu/pie/util.o
14:36:28 [2020-01-10T14:36:28.709Z] #44 42.55   CC       criu/pie/util-vdso.o
14:36:28 [2020-01-10T14:36:28.709Z] #44 43.39   CC       criu/pie/parasite-vdso.o
14:36:28 [2020-01-10T14:36:28.709Z] #44 43.64   CC       criu/arch/s390/vdso-pie.o
14:36:29 [2020-01-10T14:36:29.377Z] #44 43.96   AR       criu/pie/pie.lib.a
14:36:29 [2020-01-10T14:36:29.377Z] #44 44.02   DEP      criu/pie/restorer.d
14:36:29 [2020-01-10T14:36:29.377Z] #44 44.23   DEP      criu/arch/s390/restorer.d
14:36:29 [2020-01-10T14:36:29.377Z] #44 ...
14:36:29 [2020-01-10T14:36:29.377Z] 
14:36:29 [2020-01-10T14:36:29.377Z] #41 [registry 2/2] RUN --mount=type=cache,target=/root/.cache/go-build     -...
14:36:29 [2020-01-10T14:36:29.377Z] #41 DONE 44.4s
14:36:29 [2020-01-10T14:36:29.377Z] 
14:36:29 [2020-01-10T14:36:29.377Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:29 [2020-01-10T14:36:29.377Z] #44 44.39   DEP      criu/pie/parasite.d
14:36:29 [2020-01-10T14:36:29.904Z] #44 45.07   CC       criu/pie/parasite.o
14:36:30 [2020-01-10T14:36:30.350Z] #44 ...
14:36:30 [2020-01-10T14:36:30.350Z] 
14:36:30 [2020-01-10T14:36:30.350Z] #42 [dev 15/25] COPY --from=registry      /build/ /usr/local/bin/
14:36:30 [2020-01-10T14:36:30.350Z] #42 DONE 0.2s
14:36:30 [2020-01-10T14:36:30.350Z] 
14:36:30 [2020-01-10T14:36:30.350Z] #65 [rootlesskit 3/4] RUN --mount=type=cache,target=/root/.cache/go-build   ...
14:36:30 [2020-01-10T14:36:30.350Z] #65 40.69 + for f in rootlesskit rootlesskit-docker-proxy
14:36:30 [2020-01-10T14:36:30.350Z] #65 40.69 + go build -ldflags= -o /build//rootlesskit-docker-proxy github.com/rootless-containers/rootlesskit/cmd/rootlesskit-docker-proxy
14:36:33 [2020-01-10T14:36:33.729Z] #65 ...
14:36:33 [2020-01-10T14:36:33.729Z] 
14:36:33 [2020-01-10T14:36:33.729Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:33 [2020-01-10T14:36:33.729Z] #44 46.04   LINK     criu/pie/parasite.built-in.o
14:36:33 [2020-01-10T14:36:33.729Z] #44 46.05   GEN      criu/pie/parasite-blob.h
14:36:33 [2020-01-10T14:36:33.729Z] #44 46.07   CC       criu/arch/s390/restorer.o
14:36:33 [2020-01-10T14:36:33.729Z] #44 46.37   CC       criu/pie/restorer.o
14:36:33 [2020-01-10T14:36:33.729Z] #44 47.56   LINK     criu/pie/restorer.built-in.o
14:36:33 [2020-01-10T14:36:33.729Z] #44 47.56   GEN      criu/pie/restorer-blob.h
14:36:33 [2020-01-10T14:36:33.729Z] #44 47.60   DEP      criu/vdso.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 47.71   DEP      criu/uts_ns.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 47.79   DEP      criu/util.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 47.87   DEP      criu/uffd.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 47.94   DEP      criu/tun.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.03   DEP      criu/tty.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.11   DEP      criu/timerfd.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.18   DEP      criu/sysfs_parse.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.25   DEP      criu/sysctl.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.29   DEP      criu/string.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.31   DEP      criu/stats.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.34   DEP      criu/sockets.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.40   DEP      criu/sk-unix.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.52   DEP      criu/sk-tcp.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.59   DEP      criu/sk-queue.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.66   DEP      criu/sk-packet.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.77   DEP      criu/sk-netlink.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.86   DEP      criu/sk-inet.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 48.99   DEP      criu/signalfd.d
14:36:33 [2020-01-10T14:36:33.729Z] #44 49.05   DEP      criu/sigframe.d
14:36:34 [2020-01-10T14:36:34.140Z] #44 49.09   DEP      criu/shmem.d
14:36:34 [2020-01-10T14:36:34.140Z] #44 49.15   DEP      criu/servicefd.d
14:36:34 [2020-01-10T14:36:34.140Z] #44 49.24   DEP      criu/seize.d
14:36:34 [2020-01-10T14:36:34.140Z] #44 49.35   DEP      criu/seccomp.d
14:36:34 [2020-01-10T14:36:34.140Z] #44 49.43   DEP      criu/rst-malloc.d
14:36:34 [2020-01-10T14:36:34.140Z] #44 49.45   DEP      criu/rbtree.d
14:36:34 [2020-01-10T14:36:34.140Z] #44 ...
14:36:34 [2020-01-10T14:36:34.140Z] 
14:36:34 [2020-01-10T14:36:34.140Z] #50 [gotestsum 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     ...
14:36:34 [2020-01-10T14:36:34.140Z] #50 DONE 46.9s
14:36:34 [2020-01-10T14:36:34.140Z] 
14:36:34 [2020-01-10T14:36:34.140Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:34 [2020-01-10T14:36:34.140Z] #44 49.47   DEP      criu/pstree.d
14:36:34 [2020-01-10T14:36:34.662Z] #44 ...
14:36:34 [2020-01-10T14:36:34.662Z] 
14:36:34 [2020-01-10T14:36:34.662Z] #65 [rootlesskit 3/4] RUN --mount=type=cache,target=/root/.cache/go-build   ...
14:36:34 [2020-01-10T14:36:34.662Z] #65 DONE 47.2s
14:36:34 [2020-01-10T14:36:34.662Z] 
14:36:34 [2020-01-10T14:36:34.662Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:34 [2020-01-10T14:36:34.662Z] #44 49.64   DEP      criu/protobuf.d
14:36:34 [2020-01-10T14:36:34.662Z] #44 49.81   GEN      criu/protobuf-desc-gen.h
14:36:34 [2020-01-10T14:36:34.662Z] #44 ...
14:36:34 [2020-01-10T14:36:34.662Z] 
14:36:34 [2020-01-10T14:36:34.662Z] #66 [rootlesskit 4/4] COPY ./contrib/dockerd-rootless.sh /build
14:36:34 [2020-01-10T14:36:34.662Z] #66 DONE 0.2s
14:36:35 [2020-01-10T14:36:35.276Z] 
14:36:35 [2020-01-10T14:36:35.276Z] #62 [containerd 4/4] RUN --mount=type=cache,target=/root/.cache/go-build    ...
14:36:36 [2020-01-10T14:36:36.819Z] #62 ...
14:36:36 [2020-01-10T14:36:36.819Z] 
14:36:36 [2020-01-10T14:36:36.819Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:36 [2020-01-10T14:36:36.819Z] #44 51.87   DEP      criu/protobuf-desc.d
14:36:36 [2020-01-10T14:36:36.819Z] #44 51.95   DEP      criu/proc_parse.d
14:36:36 [2020-01-10T14:36:36.819Z] #44 52.04   DEP      criu/plugin.d
14:36:36 [2020-01-10T14:36:36.819Z] #44 52.09   DEP      criu/pipes.d
14:36:37 [2020-01-10T14:36:37.227Z] #44 52.20   DEP      criu/pie-util.d
14:36:37 [2020-01-10T14:36:37.227Z] #44 52.30   DEP      criu/pie-util-vdso.d
14:36:37 [2020-01-10T14:36:37.227Z] #44 52.38   DEP      criu/pie-util-vdso-elf32.d
14:36:37 [2020-01-10T14:36:37.227Z] #44 52.48   DEP      criu/path.d
14:36:37 [2020-01-10T14:36:37.227Z] #44 52.56   DEP      criu/parasite-syscall.d
14:36:37 [2020-01-10T14:36:37.619Z] #44 52.67   DEP      criu/pagemap.d
14:36:37 [2020-01-10T14:36:37.619Z] #44 52.77   DEP      criu/pagemap-cache.d
14:36:37 [2020-01-10T14:36:37.619Z] #44 52.83   DEP      criu/page-xfer.d
14:36:37 [2020-01-10T14:36:37.619Z] #44 52.88   DEP      criu/page-pipe.d
14:36:37 [2020-01-10T14:36:37.619Z] #44 52.93   DEP      criu/netfilter.d
14:36:37 [2020-01-10T14:36:37.619Z] #44 52.98   DEP      criu/net.d
14:36:38 [2020-01-10T14:36:38.123Z] #44 53.14   DEP      criu/namespaces.d
14:36:38 [2020-01-10T14:36:38.124Z] #44 53.20   DEP      criu/mount.d
14:36:38 [2020-01-10T14:36:38.124Z] #44 53.30   DEP      criu/mem.d
14:36:38 [2020-01-10T14:36:38.124Z] #44 53.52   DEP      criu/lsm.d
14:36:38 [2020-01-10T14:36:38.124Z] #44 53.55   DEP      criu/log.d
14:36:38 [2020-01-10T14:36:38.531Z] #44 53.62   DEP      criu/libnetlink.d
14:36:38 [2020-01-10T14:36:38.531Z] #44 53.66   DEP      criu/kerndat.d
14:36:38 [2020-01-10T14:36:38.531Z] #44 53.74   DEP      criu/kcmp-ids.d
14:36:38 [2020-01-10T14:36:38.531Z] #44 53.78   DEP      criu/irmap.d
14:36:38 [2020-01-10T14:36:38.531Z] #44 53.82   DEP      criu/ipc_ns.d
14:36:38 [2020-01-10T14:36:38.531Z] #44 53.87   DEP      criu/image.d
14:36:38 [2020-01-10T14:36:38.960Z] #44 53.97   DEP      criu/image-desc.d
14:36:38 [2020-01-10T14:36:38.961Z] #44 54.04   DEP      criu/fsnotify.d
14:36:38 [2020-01-10T14:36:38.961Z] #44 54.12   DEP      criu/filesystems.d
14:36:38 [2020-01-10T14:36:38.961Z] #44 54.17   DEP      criu/files.d
14:36:38 [2020-01-10T14:36:38.961Z] #44 54.24   DEP      criu/files-reg.d
14:36:39 [2020-01-10T14:36:39.355Z] #44 54.32   DEP      criu/files-ext.d
14:36:39 [2020-01-10T14:36:39.355Z] #44 54.44   DEP      criu/file-lock.d
14:36:39 [2020-01-10T14:36:39.355Z] #44 54.51   DEP      criu/file-ids.d
14:36:39 [2020-01-10T14:36:39.355Z] #44 54.58   DEP      criu/fifo.d
14:36:39 [2020-01-10T14:36:39.355Z] #44 54.66   DEP      criu/fdstore.d
14:36:39 [2020-01-10T14:36:39.355Z] #44 54.71   DEP      criu/fault-injection.d
14:36:39 [2020-01-10T14:36:39.746Z] #44 54.72   DEP      criu/external.d
14:36:39 [2020-01-10T14:36:39.746Z] #44 54.78   DEP      criu/eventpoll.d
14:36:39 [2020-01-10T14:36:39.746Z] #44 54.87   DEP      criu/eventfd.d
14:36:39 [2020-01-10T14:36:39.746Z] #44 54.97   DEP      criu/crtools.d
14:36:39 [2020-01-10T14:36:39.746Z] #44 55.06   DEP      criu/cr-service.d
14:36:40 [2020-01-10T14:36:40.136Z] #44 55.14   DEP      criu/cr-restore.d
14:36:40 [2020-01-10T14:36:40.136Z] #44 55.37   DEP      criu/cr-errno.d
14:36:40 [2020-01-10T14:36:40.136Z] #44 55.37   DEP      criu/cr-dump.d
14:36:40 [2020-01-10T14:36:40.136Z] #44 55.46   DEP      criu/cr-dedup.d
14:36:40 [2020-01-10T14:36:40.555Z] #44 55.55   DEP      criu/cr-check.d
14:36:40 [2020-01-10T14:36:40.555Z] #44 55.62   DEP      criu/config.d
14:36:40 [2020-01-10T14:36:40.555Z] #44 55.71   DEP      criu/clone-noasan.d
14:36:40 [2020-01-10T14:36:40.555Z] #44 55.72   DEP      criu/cgroup.d
14:36:40 [2020-01-10T14:36:40.555Z] #44 55.78   DEP      criu/cgroup-props.d
14:36:40 [2020-01-10T14:36:40.555Z] #44 55.81   DEP      criu/bitmap.d
14:36:40 [2020-01-10T14:36:40.555Z] #44 55.82   DEP      criu/bfd.d
14:36:40 [2020-01-10T14:36:40.555Z] #44 55.84   DEP      criu/autofs.d
14:36:40 [2020-01-10T14:36:40.555Z] #44 55.89   DEP      criu/aio.d
14:36:40 [2020-01-10T14:36:40.555Z] #44 55.94   DEP      criu/action-scripts.d
14:36:40 [2020-01-10T14:36:40.977Z] #44 56.07   CC       criu/action-scripts.o
14:36:40 [2020-01-10T14:36:40.977Z] #44 56.22   CC       criu/aio.o
14:36:41 [2020-01-10T14:36:41.402Z] #44 56.41   CC       criu/autofs.o
14:36:41 [2020-01-10T14:36:41.822Z] #44 56.87   CC       criu/bfd.o
14:36:41 [2020-01-10T14:36:41.823Z] #44 57.05   CC       criu/bitmap.o
14:36:41 [2020-01-10T14:36:41.823Z] #44 57.12   CC       criu/cgroup-props.o
14:36:42 [2020-01-10T14:36:42.231Z] #44 57.45   CC       criu/cgroup.o
14:36:43 [2020-01-10T14:36:43.603Z] #44 ...
14:36:43 [2020-01-10T14:36:43.603Z] 
14:36:43 [2020-01-10T14:36:43.603Z] #57 [runc 3/3] RUN --mount=type=cache,target=/root/.cache/go-build     --mou...
14:36:43 [2020-01-10T14:36:43.603Z] #57 54.18 CGO_ENABLED=1 go build  -tags "seccomp apparmor selinux  netgo osusergo static_build" -installsuffix netgo -ldflags "-w -extldflags -static -X main.gitCommit="d736ef14f0288d6993a1845745d6756cfc9ddd5a" -X main.version=1.0.0-rc9 " -o contrib/cmd/recvtty/recvtty ./contrib/cmd/recvtty
14:36:43 [2020-01-10T14:36:43.603Z] #57 55.87 + mkdir -p /build
14:36:43 [2020-01-10T14:36:43.603Z] #57 55.88 + cp runc /build/runc
14:36:43 [2020-01-10T14:36:43.603Z] #57 DONE 56.0s
14:36:43 [2020-01-10T14:36:43.603Z] 
14:36:43 [2020-01-10T14:36:43.603Z] #44 [criu 2/2] RUN mkdir -p /usr/src/criu     && curl -sSL https://github.co...
14:36:43 [2020-01-10T14:36:43.603Z] #44 58.72   CC       criu/clone-noasan.o
14:36:43 [2020-01-10T14:36:43.603Z] #44 58.79   CC       criu/config.o
14:36:44 [2020-01-10T14:36:44.018Z] #44 59.33   CC       criu/cr-check.o
14:36:44 [2020-01-10T14:36:44.865Z] #44 59.89   CC       criu/cr-dedup.o
14:36:44 [2020-01-10T14:36:44.866Z] #44 60.04   CC       criu/cr-dump.o
14:36:45 [2020-01-10T14:36:45.791Z] #44 60.81   CC       criu/cr-errno.o
14:36:45 [2020-01-10T14:36:45.791Z] #44 60.82   CC       criu/cr-restore.o
14:36:47 [2020-01-10T14:36:47.495Z] #44 62.69   CC       criu/cr-service.o
14:36:48 [2020-01-10T14:36:48.318Z] #44 63.57   CC       criu/crtools.o
14:36:48 [2020-01-10T14:36:48.728Z] #44 63.83   CC       criu/eventfd.o
14:36:48 [2020-01-10T14:36:48.728Z] #44 64.01   CC       criu/eventpoll.o
14:36:49 [2020-01-10T14:36:49.131Z] #44 64.47   CC       criu/external.o
14:36:49 [2020-01-10T14:36:49.518Z] #44 64.61   CC       criu/fault-injection.o
14:36:49 [2020-01-10T14:36:49.518Z] #44 64.71   CC       criu/fdstore.o
14:36:49 [2020-01-10T14:36:49.905Z] #44 64.86   CC       criu/fifo.o
14:36:49 [2020-01-10T14:36:49.905Z] #44 65.06   CC       criu/file-ids.o
14:36:49 [2020-01-10T14:36:49.905Z] #44 65.19   CC       criu/file-lock.o
14:36:50 [2020-01-10T14:36:50.292Z] #44 65.55   CC       criu/files-ext.o
14:36:50 [2020-01-10T14:36:50.292Z] #44 65.74   CC       criu/files-reg.o
14:36:51 [2020-01-10T14:36:51.140Z] #44 66.39   CC       criu/files.o
14:36:52 [2020-01-10T14:36:52.039Z] #44 67.11   CC       criu/filesystems.o
14:36:52 [2020-01-10T14:36:52.039Z] #44 67.33   CC       criu/fsnotify.o
14:36:52 [2020-01-10T14:36:52.443Z] #44 67.57   CC       criu/image-desc.o
14:36:52 [2020-01-10T14:36:52.443Z] #44 67.61   CC       criu/image.o
14:36:53 [2020-01-10T14:36:53.105Z] #44 67.89   CC       criu/ipc_ns.o
14:36:53 [2020-01-10T14:36:53.701Z] #44 68.55   CC       criu/irmap.o
14:36:53 [2020-01-10T14:36:53.701Z] #44 68.74   CC       criu/kcmp-ids.o
14:36:53 [2020-01-10T14:36:53.701Z] #44 68.85   CC       criu/kerndat.o
14:36:54 [2020-01-10T14:36:54.163Z] #44 69.33   CC       criu/libnetlink.o
14:36:54 [2020-01-10T14:36:54.163Z] #44 69.48   CC       criu/log.o
14:36:54 [2020-01-10T14:36:54.574Z] #44 69.72   CC       criu/lsm.o
14:36:54 [2020-01-10T14:36:54.574Z] #44 69.89   CC       criu/mem.o
14:36:55 [2020-01-10T14:36:55.435Z] #44 70.56   CC       criu/mount.o
14:36:56 [2020-01-10T14:36:56.768Z] #44 71.94   CC       criu/namespaces.o
14:36:57 [2020-01-10T14:36:57.623Z] #44 72.77   CC       criu/net.o
14:36:59 [2020-01-10T14:36:59.005Z] #44 73.98   CC       criu/netfilter.o
14:36:59 [2020-01-10T14:36:59.005Z] #44 74.20   CC       criu/page-pipe.o
14:36:59 [2020-01-10T14:36:59.471Z] #44 74.53   CC       criu/page-xfer.o
14:36:59 [2020-01-10T14:36:59.862Z] #44 75.19   CC       criu/pagemap-cache.o
14:37:00 [2020-01-10T14:37:00.258Z] #44 75.41   CC       criu/pagemap.o
14:37:00 [2020-01-10T14:37:00.652Z] #44 75.77   CC       criu/parasite-syscall.o
14:37:00 [2020-01-10T14:37:00.652Z] #44 76.02   CC       criu/path.o
14:37:00 [2020-01-10T14:37:00.652Z] #44 76.10   CC       criu/pie-util-vdso-elf32.o
14:37:01 [2020-01-10T14:37:01.070Z] #44 76.35   CC       criu/pie-util-vdso.o
14:37:01 [2020-01-10T14:37:01.465Z] #44 76.61   CC       criu/pie-util.o
14:37:01 [2020-01-10T14:37:01.465Z] #44 76.69   CC       criu/pipes.o
14:37:01 [2020-01-10T14:37:01.845Z] #44 77.02   CC       criu/plugin.o
14:37:01 [2020-01-10T14:37:01.846Z] #44 77.22   CC       criu/proc_parse.o
14:37:03 [2020-01-10T14:37:03.203Z] #44 78.56   CC       criu/protobuf-desc.o
14:37:04 [2020-01-10T14:37:04.650Z] #44 79.10   CC       criu/protobuf.o
14:37:04 [2020-01-10T14:37:04.650Z] #44 79.35   CC       criu/pstree.o
14:37:05 [2020-01-10T14:37:05.235Z] #44 80.20   CC       criu/rbtree.o
14:37:05 [2020-01-10T14:37:05.235Z] #44 80.39   CC       criu/rst-malloc.o
14:37:05 [2020-01-10T14:37:05.235Z] #44 80.64   CC       criu/seccomp.o
14:37:05 [2020-01-10T14:37:05.717Z] #44 81.00   CC       criu/seize.o
14:37:06 [2020-01-10T14:37:06.096Z] #44 81.56   CC       criu/servicefd.o
14:37:06 [2020-01-10T14:37:06.497Z] #44 81.81   CC       criu/shmem.o
14:37:06 [2020-01-10T14:37:06.901Z] #44 82.17   CC       criu/sigframe.o
14:37:06 [2020-01-10T14:37:06.902Z] #44 82.25   CC       criu/signalfd.o
14:37:06 [2020-01-10T14:37:06.902Z] #44 82.35   CC       criu/sk-inet.o
14:37:07 [2020-01-10T14:37:07.774Z] #44 82.88   CC       criu/sk-netlink.o
14:37:07 [2020-01-10T14:37:07.774Z] #44 83.02   CC       criu/sk-packet.o
14:37:08 [2020-01-10T14:37:08.179Z] #44 83.27   CC       criu/sk-queue.o
14:37:08 [2020-01-10T14:37:08.179Z] #44 83.54   CC       criu/sk-tcp.o
14:37:08 [2020-01-10T14:37:08.580Z] #44 83.82   CC       criu/sk-unix.o
14:37:09 [2020-01-10T14:37:09.439Z] #44 84.84   CC       criu/sockets.o
14:37:10 [2020-01-10T14:37:10.559Z] #44 85.52   CC       criu/stats.o
14:37:10 [2020-01-10T14:37:10.559Z] #44 85.68   CC       criu/string.o
14:37:10 [2020-01-10T14:37:10.559Z] #44 85.75   CC       criu/sysctl.o
14:37:10 [2020-01-10T14:37:10.988Z] #44 86.35   CC       criu/sysfs_parse.o
14:37:11 [2020-01-10T14:37:11.380Z] #44 86.63   CC       criu/timerfd.o
14:37:11 [2020-01-10T14:37:11.786Z] #44 86.92   CC       criu/tty.o
14:37:12 [2020-01-10T14:37:12.641Z] #44 87.76   CC       criu/tun.o
14:37:13 [2020-01-10T14:37:13.041Z] #44 88.00   CC       criu/uffd.o
14:37:13 [2020-01-10T14:37:13.446Z] #44 88.68   CC       criu/util.o
14:37:13 [2020-01-10T14:37:13.857Z] #44 89.12   CC       criu/uts_ns.o
14:37:13 [2020-01-10T14:37:13.857Z] #44 89.21   CC       criu/vdso.o
14:37:14 [2020-01-10T14:37:14.261Z] #44 89.47   LINK     criu/built-in.o
14:37:14 [2020-01-10T14:37:14.261Z] #44 89.55   LINK     criu/criu
14:37:14 [2020-01-10T14:37:14.660Z] #44 89.82   DEP      lib/c/criu.d
14:37:14 [2020-01-10T14:37:14.660Z] #44 89.90   CC       images/rpc.pb-c.o
14:37:15 [2020-01-10T14:37:15.062Z] #44 90.19   CC       lib/c/criu.o
14:37:15 [2020-01-10T14:37:15.468Z] #44 90.66   LINK     lib/c/built-in.o
14:37:15 [2020-01-10T14:37:15.468Z] #44 90.67   LINK     lib/c/libcriu.so
14:37:15 [2020-01-10T14:37:15.468Z] #44 90.76   GEN      magic.py
14:37:15 [2020-01-10T14:37:15.871Z] #44 90.86 Note: Building without setproctitle() and strlcpy() support.
14:37:15 [2020-01-10T14:37:15.871Z] #44 90.86       To enable these features, please install libbsd-devel (RPM) / libbsd-dev (DEB).
14:37:15 [2020-01-10T14:37:15.871Z] #44 91.22 fatal: not a git repository (or any of the parent directories): .git
14:37:16 [2020-01-10T14:37:16.717Z] #44 91.63 make[1]: Nothing to be done for 'all'.
14:37:16 [2020-01-10T14:37:16.717Z] #44 92.03 make[1]: 'images/built-in.o' is up to date.
14:37:16 [2020-01-10T14:37:16.717Z] #44 92.04 make[1]: 'compel/plugins/std.lib.a' is up to date.
14:37:16 [2020-01-10T14:37:16.717Z] #44 92.06 make[1]: 'compel/plugins/fds.lib.a' is up to date.
14:37:16 [2020-01-10T14:37:16.717Z] #44 92.08 make[1]: 'compel/libcompel.a' is up to date.
14:37:16 [2020-01-10T14:37:16.717Z] #44 92.11 make[1]: 'compel/compel-host-bin' is up to date.
14:37:16 [2020-01-10T14:37:16.717Z] #44 92.14 make[1]: Nothing to be done for 'all'.
14:37:17 [2020-01-10T14:37:17.117Z] #44 92.15 make[1]: 'soccr/libsoccr.a' is up to date.
14:37:17 [2020-01-10T14:37:17.117Z] #44 92.30 make[2]: Nothing to be done for 'all'.
14:37:17 [2020-01-10T14:37:17.117Z] #44 92.31 make[2]: Nothing to be done for 'all'.
14:37:17 [2020-01-10T14:37:17.117Z] #44 92.34 make[2]: Nothing to be done for 'all'.
14:37:17 [2020-01-10T14:37:17.117Z] #44 92.41 make[2]: Nothing to be done for 'all'.
14:37:17 [2020-01-10T14:37:17.117Z] #44 92.45 make[2]: Nothing to be done for 'all'.
14:37:17 [2020-01-10T14:37:17.117Z] #44 92.46 make[2]: Nothing to be done for 'all'.
14:37:17 [2020-01-10T14:37:17.117Z] #44 92.48 make[2]: Nothing to be done for 'all'.
14:37:17 [2020-01-10T14:37:17.117Z] #44 92.55 make[2]: Nothing to be done for 'all'.
14:37:17 [2020-01-10T14:37:17.520Z] #44 92.55   INSTALL  criu/criu
14:37:17 [2020-01-10T14:37:17.520Z] #44 DONE 92.7s
14:37:17 [2020-01-10T14:37:17.520Z] 
14:37:17 [2020-01-10T14:37:17.520Z] #62 [containerd 4/4] RUN --mount=type=cache,target=/root/.cache/go-build    ...
14:37:18 [2020-01-10T14:37:18.364Z] #62 ...
14:37:18 [2020-01-10T14:37:18.364Z] 
14:37:18 [2020-01-10T14:37:18.364Z] #45 [dev 16/25] COPY --from=criu          /build/ /usr/local/
14:37:18 [2020-01-10T14:37:18.364Z] #45 DONE 0.1s
14:37:18 [2020-01-10T14:37:18.364Z] 
14:37:18 [2020-01-10T14:37:18.364Z] #48 [dev 17/25] COPY --from=vndr          /build/ /usr/local/bin/
14:37:18 [2020-01-10T14:37:18.364Z] #48 DONE 0.1s
14:37:18 [2020-01-10T14:37:18.364Z] 
14:37:18 [2020-01-10T14:37:18.364Z] #62 [containerd 4/4] RUN --mount=type=cache,target=/root/.cache/go-build    ...
14:37:18 [2020-01-10T14:37:18.364Z] #62 ...
14:37:18 [2020-01-10T14:37:18.364Z] 
14:37:18 [2020-01-10T14:37:18.364Z] #51 [dev 18/25] COPY --from=gotestsum     /build/ /usr/local/bin/
14:37:18 [2020-01-10T14:37:18.364Z] #51 DONE 0.1s
14:37:18 [2020-01-10T14:37:18.758Z] 
14:37:18 [2020-01-10T14:37:18.758Z] #62 [containerd 4/4] RUN --mount=type=cache,target=/root/.cache/go-build    ...
14:37:24 [2020-01-10T14:37:24.493Z] #62 83.98 + bin/containerd
14:37:24 [2020-01-10T14:37:24.493Z] #62 ...
14:37:24 [2020-01-10T14:37:24.493Z] 
14:37:24 [2020-01-10T14:37:24.493Z] #53 [golangci_lint 3/3] RUN --mount=type=cache,target=/root/.cache/go-build ...
14:37:24 [2020-01-10T14:37:24.493Z] #53 DONE 96.9s
14:37:24 [2020-01-10T14:37:24.493Z] 
14:37:24 [2020-01-10T14:37:24.493Z] #62 [containerd 4/4] RUN --mount=type=cache,target=/root/.cache/go-build    ...
14:37:25 [2020-01-10T14:37:25.359Z] #62 ...
14:37:25 [2020-01-10T14:37:25.359Z] 
14:37:25 [2020-01-10T14:37:25.359Z] #54 [dev 19/25] COPY --from=golangci_lint /build/ /usr/local/bin/
14:37:25 [2020-01-10T14:37:25.359Z] #54 DONE 0.3s
14:37:25 [2020-01-10T14:37:25.359Z] 
14:37:25 [2020-01-10T14:37:25.359Z] #58 [dev 20/25] COPY --from=runc          /build/ /usr/local/bin/
14:37:25 [2020-01-10T14:37:25.359Z] #58 DONE 0.2s
14:37:25 [2020-01-10T14:37:25.359Z] 
14:37:25 [2020-01-10T14:37:25.359Z] #62 [containerd 4/4] RUN --mount=type=cache,target=/root/.cache/go-build    ...
14:37:49 [2020-01-10T14:37:49.415Z] #62 107.8 + bin/containerd-stress
14:37:49 [2020-01-10T14:37:49.835Z] #62 109.6 + bin/containerd-shim
14:37:56 [2020-01-10T14:37:56.553Z] #62 115.9 + bin/containerd-shim-runc-v1
14:38:00 [2020-01-10T14:38:00.067Z] #62 119.5 + bin/containerd-shim-runc-v2
14:38:00 [2020-01-10T14:38:00.445Z] #62 120.3 + binaries
14:38:00 [2020-01-10T14:38:00.445Z] #62 120.3 + mkdir -p /build
14:38:00 [2020-01-10T14:38:00.445Z] #62 120.3 + cp bin/containerd /build/containerd
14:38:00 [2020-01-10T14:38:00.445Z] #62 120.4 + cp bin/containerd-shim /build/containerd-shim
14:38:00 [2020-01-10T14:38:00.445Z] #62 120.4 + cp bin/ctr /build/ctr
14:38:00 [2020-01-10T14:38:00.824Z] #62 DONE 120.5s
14:38:01 [2020-01-10T14:38:01.286Z] 
14:38:01 [2020-01-10T14:38:01.286Z] #63 [dev 21/25] COPY --from=containerd    /build/ /usr/local/bin/
14:38:01 [2020-01-10T14:38:01.286Z] #63 DONE 0.2s
14:38:01 [2020-01-10T14:38:01.696Z] 
14:38:01 [2020-01-10T14:38:01.696Z] #67 [dev 22/25] COPY --from=rootlesskit   /build/ /usr/local/bin/
14:38:01 [2020-01-10T14:38:01.696Z] #67 DONE 0.1s
14:38:01 [2020-01-10T14:38:01.696Z] 
14:38:01 [2020-01-10T14:38:01.696Z] #69 [dev 23/25] COPY --from=vpnkit        /vpnkit /usr/local/bin/vpnkit.x86_...
14:38:02 [2020-01-10T14:38:02.504Z] #69 DONE 0.8s
14:38:02 [2020-01-10T14:38:02.504Z] 
14:38:02 [2020-01-10T14:38:02.504Z] #72 [dev 24/25] COPY --from=proxy         /build/ /usr/local/bin/
14:38:02 [2020-01-10T14:38:02.504Z] #72 DONE 0.1s
14:38:02 [2020-01-10T14:38:02.504Z] 
14:38:02 [2020-01-10T14:38:02.504Z] #73 [dev 25/25] WORKDIR /go/src/github.com/docker/docker
14:38:02 [2020-01-10T14:38:02.504Z] #73 DONE 0.1s
14:38:02 [2020-01-10T14:38:02.504Z] 
14:38:02 [2020-01-10T14:38:02.504Z] #74 [final 1/1] COPY . /go/src/github.com/docker/docker
14:38:03 [2020-01-10T14:38:03.297Z] #74 DONE 0.6s
14:38:03 [2020-01-10T14:38:03.297Z] 
14:38:03 [2020-01-10T14:38:03.297Z] #75 exporting to oci image format
14:38:03 [2020-01-10T14:38:03.297Z] #75 exporting layers
14:38:27 [2020-01-10T14:38:27.731Z] #75 exporting layers 21.4s done
14:38:27 [2020-01-10T14:38:27.731Z] #75 exporting manifest sha256:4a19c50e338120c42a1dd4fc392ca35d83399718be948fbb306e72af84f537af 0.0s done
14:38:27 [2020-01-10T14:38:27.731Z] #75 exporting config sha256:1662c714ed638715463f72242f91b093ecf5b3ee5a777eaf0985e6197a4290d1 0.0s done
14:38:27 [2020-01-10T14:38:27.731Z] #75 sending tarball
14:38:35 [2020-01-10T14:38:35.621Z] #75 sending tarball 10.5s done
14:38:35 [2020-01-10T14:38:35.621Z] #75 DONE 32.0s
14:38:35 [2020-01-10T14:38:35.621Z] 
14:38:35 [2020-01-10T14:38:35.621Z] #76 importing to docker
14:38:42 [2020-01-10T14:38:42.499Z] #76 DONE 4.4s