Skip to content

Console Output

+ make -f docker.Makefile vendor
docker build --build-arg=EXPERIMENTAL=off --build-arg=TAG=133a2c6d8e --build-arg=COMMIT=133a2c6 --target=dev -t docker-app-dev:133a2c6d8e .
Sending build context to Docker daemon  68.79MB

Step 1/16 : ARG ALPINE_VERSION=3.8
Step 2/16 : ARG GO_VERSION=1.11.0
Step 3/16 : FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS build
 ---> 233ed4ed14bf
Step 4/16 : ARG DOCKERCLI_VERSION=18.03.1-ce
 ---> Running in 6e97435a740b
Removing intermediate container 6e97435a740b
 ---> cb82d4d14b50
Step 5/16 : ARG DOCKERCLI_CHANNEL=edge
 ---> Running in b25817e2f56f
Removing intermediate container b25817e2f56f
 ---> a55d476d9cf4
Step 6/16 : RUN apk add --no-cache   bash   make  git   curl   util-linux   coreutils   build-base
 ---> Running in 9d8c1a89bda8
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/community/x86_64/APKINDEX.tar.gz
(1/43) Upgrading musl (1.1.19-r10 -> 1.1.19-r11)
(2/43) Installing ncurses-terminfo-base (6.1_p20180818-r1)
(3/43) Installing ncurses-terminfo (6.1_p20180818-r1)
(4/43) Installing ncurses-libs (6.1_p20180818-r1)
(5/43) Installing readline (7.0.003-r0)
(6/43) Installing bash (4.4.19-r1)
Executing bash-4.4.19-r1.post-install
(7/43) Installing binutils (2.30-r6)
(8/43) Installing libmagic (5.32-r1)
(9/43) Installing file (5.32-r1)
(10/43) Installing gmp (6.1.2-r1)
(11/43) Installing isl (0.18-r0)
(12/43) Installing libgomp (6.4.0-r9)
(13/43) Installing libatomic (6.4.0-r9)
(14/43) Installing pkgconf (1.5.3-r0)
(15/43) Installing libgcc (6.4.0-r9)
(16/43) Installing mpfr3 (3.1.5-r1)
(17/43) Installing mpc1 (1.0.3-r1)
(18/43) Installing libstdc++ (6.4.0-r9)
(19/43) Installing gcc (6.4.0-r9)
(20/43) Installing musl-dev (1.1.19-r11)
(21/43) Installing libc-dev (0.7.1-r0)
(22/43) Installing g++ (6.4.0-r9)
(23/43) Installing make (4.2.1-r2)
(24/43) Installing fortify-headers (0.9-r0)
(25/43) Installing build-base (0.5-r1)
(26/43) Installing libattr (2.4.47-r7)
(27/43) Installing libacl (2.2.52-r5)
(28/43) Installing coreutils (8.29-r2)
(29/43) Installing nghttp2-libs (1.32.0-r0)
(30/43) Installing libssh2 (1.8.2-r0)
(31/43) Installing libcurl (7.61.1-r2)
(32/43) Installing curl (7.61.1-r2)
(33/43) Installing expat (2.2.7-r0)
(34/43) Installing pcre2 (10.31-r0)
(35/43) Installing git (2.18.1-r0)
(36/43) Upgrading musl-utils (1.1.19-r10 -> 1.1.19-r11)
(37/43) Installing libuuid (2.32-r0)
(38/43) Installing libblkid (2.32-r0)
(39/43) Installing libmount (2.32-r0)
(40/43) Installing libsmartcols (2.32-r0)
(41/43) Installing findmnt (2.32-r0)
(42/43) Installing libfdisk (2.32-r0)
(43/43) Installing util-linux (2.32-r0)
Executing busybox-1.28.4-r1.trigger
OK: 194 MiB in 55 packages
Removing intermediate container 9d8c1a89bda8
 ---> 3d9416afeb2f
Step 7/16 : RUN curl -Ls https://download.docker.com/linux/static/$DOCKERCLI_CHANNEL/x86_64/docker-$DOCKERCLI_VERSION.tgz |   tar -xz docker/docker &&   mv docker/docker /usr/bin/docker
 ---> Running in 3f7a34aa5619
Removing intermediate container 3f7a34aa5619
 ---> 575640f9f53f
Step 8/16 : WORKDIR /go/src/github.com/docker/app/
 ---> Running in 65b672008189
Removing intermediate container 65b672008189
 ---> 98fa68c0f5ae
Step 9/16 : FROM build AS dev
 ---> 98fa68c0f5ae
Step 10/16 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Running in a563e89d6fec
Removing intermediate container a563e89d6fec
 ---> 1b4515f42994
Step 11/16 : ARG DEP_VERSION=v0.5.0
 ---> Running in b9c12e2c7e5b
Removing intermediate container b9c12e2c7e5b
 ---> deb293624bc5
Step 12/16 : RUN curl -o /usr/bin/dep -L https://github.com/golang/dep/releases/download/${DEP_VERSION}/dep-linux-amd64 &&     chmod +x /usr/bin/dep
 ---> Running in 6024b0c4e4c2
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   605    0   605    0     0   5654      0 --:--:-- --:--:-- --:--:--  5654

100 8513k  100 8513k    0     0  39.5M      0 --:--:-- --:--:-- --:--:-- 39.5M
Removing intermediate container 6024b0c4e4c2
 ---> 457f0beb2e08
Step 13/16 : RUN go get -d gopkg.in/mjibson/esc.v0 &&     cd /go/src/github.com/mjibson/esc &&     go build -v -o /usr/bin/esc . &&     rm -rf /go/src/* /go/pkg/* /go/bin/*
 ---> Running in dad1a87749cd
golang.org/x/tools/internal/semver
github.com/pkg/errors
golang.org/x/tools/go/ast/astutil
golang.org/x/tools/go/internal/gcimporter
golang.org/x/tools/go/internal/packagesdriver
golang.org/x/tools/internal/fastwalk
golang.org/x/tools/internal/gopathwalk
golang.org/x/tools/internal/module
golang.org/x/tools/go/gcexportdata
golang.org/x/tools/go/packages
golang.org/x/tools/internal/imports
golang.org/x/tools/imports
github.com/mjibson/esc/embed
github.com/mjibson/esc
Removing intermediate container dad1a87749cd
 ---> e984b34649b8
Step 14/16 : COPY vendor/github.com/deis/duffle /go/src/github.com/deis/duffle
 ---> 5260a066a4ab
Step 15/16 : RUN (cd /go/src/github.com/deis/duffle &&   make bootstrap build-release &&   ./bin/duffle-linux-amd64 init)
 ---> Running in 40be58a85c6e
fatal: not a git repository (or any of the parent directories): .git
make: command: Command not found
make: command: Command not found
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  5230  100  5230    0     0   212k      0 --:--:-- --:--:-- --:--:--  212k
ARCH = amd64
OS = linux
Will install into /go/bin
Fetching https://github.com/golang/dep/releases/latest..
Release Tag = v0.5.4
Fetching https://github.com/golang/dep/releases/tag/v0.5.4..
Fetching https://github.com/golang/dep/releases/download/v0.5.4/dep-linux-amd64..
Setting executable permissions.
Moving executable to /go/bin/dep
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b /go/bin
golangci/golangci-lint info checking GitHub for latest tag
golangci/golangci-lint info found version: 1.17.1 for v1.17.1/linux/amd64
golangci/golangci-lint info installed /go/bin/golangci-lint
dep ensure -vendor-only -v
(1/68) Wrote github.com/Microsoft/go-winio@v0.4.11
(2/68) Wrote github.com/docker/go-units@v0.3.3
(3/68) Wrote github.com/docker/libtrust@master
(4/68) Wrote github.com/docker/docker-credential-helpers@v0.6.1
(5/68) Wrote github.com/Nvveen/Gotty@master
(6/68) Wrote github.com/agl/ed25519@master
(7/68) Wrote github.com/beorn7/perks@master
(8/68) Wrote github.com/docker/go-connections@v0.4.0
(9/68) Wrote github.com/davecgh/go-spew@v1.1.1
(10/68) Wrote github.com/docker/go-metrics@d466d4f6fd960e01820085bd7e1a24426ee7ef18
(11/68) Wrote github.com/docker/go@v1.5.1-1
(12/68) Wrote github.com/containerd/continuity@master
(13/68) Wrote github.com/ghodss/yaml@v1.0.0
(14/68) Wrote github.com/fsnotify/fsnotify@v1.4.7
(15/68) Wrote gopkg.in/yaml.v2@v2.2.1
(16/68) Wrote github.com/gorilla/context@v1.1.1
(17/68) Wrote github.com/gosuri/uitable@master
(18/68) Wrote github.com/hashicorp/go-version@v1.0.0
(19/68) Wrote github.com/gorilla/mux@v1.6.2
(20/68) Wrote github.com/inconshreveable/mousetrap@v1.0
(21/68) Wrote github.com/hashicorp/hcl@v1.0.0
(22/68) Wrote github.com/kballard/go-shellquote@master
(23/68) Wrote github.com/konsorten/go-windows-terminal-sequences@master
(24/68) Wrote github.com/magiconair/properties@v1.8.0
(25/68) Wrote github.com/mattn/go-colorable@v0.0.9
(26/68) Wrote github.com/mattn/go-isatty@v0.0.4
(27/68) Wrote github.com/mattn/go-runewidth@v0.0.3
(28/68) Wrote github.com/matttproud/golang_protobuf_extensions@v1.0.1
(29/68) Wrote github.com/mgutz/ansi@master
(30/68) Wrote github.com/mitchellh/mapstructure@v1.1.1
(31/68) Wrote github.com/miekg/pkcs11@master
(32/68) Wrote github.com/oklog/ulid@v1.3.0
(33/68) Wrote github.com/opencontainers/go-digest@v1.0.0-rc1
(34/68) Wrote github.com/peterhellberg/link@v1.0.0
(35/68) Wrote github.com/pelletier/go-toml@v1.2.0
(36/68) Wrote github.com/pkg/errors@v0.8.0
(37/68) Wrote github.com/pmezard/go-difflib@v1.0.0
(38/68) Wrote github.com/opencontainers/image-spec@v1.0.1
(39/68) Wrote github.com/prometheus/client_model@master
(40/68) Wrote github.com/prometheus/procfs@master
(41/68) Wrote github.com/renstrom/fuzzysearch@v1.0.1
(42/68) Wrote github.com/prometheus/client_golang@v0.8.0
(43/68) Wrote github.com/spf13/afero@v1.1.2
(44/68) Wrote github.com/spf13/cast@v1.2.0
(45/68) Wrote github.com/prometheus/common@master
(46/68) Wrote github.com/spf13/jwalterweatherman@v1.0.0
(47/68) Wrote github.com/sirupsen/logrus@v1.1.0
(48/68) Wrote github.com/spf13/pflag@v1.0.2
(49/68) Wrote github.com/technosophos/moniker@0.2.0
(50/68) Wrote github.com/spf13/viper@v1.2.1
(51/68) Wrote github.com/spf13/cobra@v0.0.3
(52/68) Wrote github.com/stretchr/testify@v1.2.2
(53/68) Wrote github.com/Masterminds/semver@v1.4.2
(54/68) Wrote github.com/Azure/go-ansiterm@master
(55/68) Wrote golang.org/x/time@master
(56/68) Wrote github.com/golang/protobuf@v1.2.0
(57/68) Wrote github.com/docker/distribution@83389a148052d74ac602f5f1d62f86ff2f3c4aa5
(58/68) Wrote github.com/opencontainers/runc@v0.1.1
(59/68) Wrote golang.org/x/crypto@master
(60/68) Wrote gopkg.in/AlecAivazis/survey.v1@v1.6.3
(61/68) Wrote golang.org/x/net@master
(62/68) Wrote github.com/genuinetools/reg@v0.16.0
(63/68) Wrote golang.org/x/sys@master
(64/68) Wrote github.com/docker/cli (from github.com/simonferquel/cli)@docker-app-fork
(65/68) Wrote golang.org/x/text@v0.3.0
(66/68) Wrote github.com/theupdateframework/notary@v0.6.1
(67/68) Wrote github.com/gogo/protobuf@v1.1.1
(68/68) Wrote github.com/docker/docker@master
building linux
building windows
building darwin
==> The following new directories will be created:
/root/.duffle
/root/.duffle/bundles
/root/.duffle/logs
/root/.duffle/plugins
/root/.duffle/claims
/root/.duffle/credentials
==> The following new files will be created:
/root/.duffle/repositories.json
==> Generating a new secret keyring at /root/.duffle/secret.ring
==> Generating a new signing key with ID user <@40be58a85c6e>
==> Generating a new public keyring at /root/.duffle/public.ring
Removing intermediate container 40be58a85c6e
 ---> 34729431b6ec
Step 16/16 : COPY . .
 ---> d771273c5964
[Warning] One or more build-args [COMMIT EXPERIMENTAL TAG] were not consumed
Successfully built d771273c5964
Successfully tagged docker-app-dev:133a2c6d8e
Vendoring...
docker run --rm docker-app-dev:133a2c6d8e sh -c "make vendor && hack/check-git-diff vendor"
rm -rf vendor 1>&1
dep ensure -v
(1/87) Wrote github.com/Microsoft/go-winio@v0.4.9
(2/87) Wrote github.com/containerd/continuity@master
(3/87) Wrote github.com/docker/docker-credential-helpers@v0.6.1
(4/87) Wrote github.com/docker/go-connections@7395e3f8aa162843a74ed6d48e79627d9792ac55
(5/87) Wrote github.com/docker/go-metrics@d466d4f6fd960e01820085bd7e1a24426ee7ef18
(6/87) Wrote github.com/agl/ed25519@master
(7/87) Wrote github.com/beorn7/perks@master
(8/87) Wrote vbom.ml/util@master
(9/87) Failed to write github.com/docker/cli (from git@github.com:simonferquel/cli.git)@docker-app-fork
(10/87) Failed to write github.com/containerd/containerd@v1.1.2
(11/87) Failed to write github.com/docker/distribution@83389a148052d74ac602f5f1d62f86ff2f3c4aa5
(12/87) Failed to write github.com/cbroglie/mustache@v1.0.1
(13/87) Failed to write github.com/docker/docker@53e55db9d3f0f0910ea95515222c8a35e106f10e
(14/87) Failed to write github.com/davecgh/go-spew@v1.1.0
(15/87) Failed to write github.com/deis/duffle (from git@github.com:simonferquel/duffle.git)@dockercon-version
(16/87) Failed to write github.com/docker/go@v1.5.1-1
(17/87) Failed to write github.com/Nvveen/Gotty@master
(18/87) Failed to write github.com/docker/go-events@master
(19/87) Failed to write github.com/docker/go-units@v0.3.3
(20/87) Failed to write github.com/docker/libtrust@master
(21/87) Failed to write github.com/docker/swarmkit@edd5641391926a50bc5f7040e20b7efc05003c26
(22/87) Failed to write github.com/flynn-archive/go-shlex@master
(23/87) Failed to write github.com/genuinetools/reg@v0.16.0
(24/87) Failed to write github.com/ghodss/yaml@v1.0.0
(25/87) Failed to write github.com/coreos/etcd@v3.3.8
grouped write of manifest, lock and vendor: error while writing out vendor tree: failed to write dep tree: failed to export github.com/docker/cli: 
	(1) failed to list versions for ssh://git@github.com/simonferquel/cli.git: fatal: cannot run ssh: No such file or directory
fatal: unable to fork
: exit status 128

make: *** [Makefile:93: vendor] Error 1
docker.Makefile:106: recipe for target 'vendor' failed
make: *** [vendor] Error 2