build: Use multi-arch go-compile to compile tools

This now completes the steps to bootstrap the other
packages with multi-arch as we now have the tools both
on arm64 and amd64.

Also update vendoring doc with new hash

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
Rolf Neugebauer 2017-08-02 14:50:44 +01:00
parent 6adde26d62
commit b0df2c94ae
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ all: default
VERSION="0.0" # dummy for now
GIT_COMMIT=$(shell git rev-list -1 HEAD)
GO_COMPILE=linuxkit/go-compile:a1e3cd3a54b1ad683b555655282272d0eb27ee40
GO_COMPILE=linuxkit/go-compile:7cac05c5588b3dd6a7f7bdb34fc1da90257394c7
MOBY?=bin/moby
LINUXKIT?=bin/linuxkit

View File

@ -22,7 +22,7 @@ docker run -it --rm \
-v $(pwd):/go/src/github.com/linuxkit/linuxkit \
-w /go/src/github.com/linuxkit/linuxkit/src/cmd/linuxkit \
--entrypoint /go/bin/vndr \
linuxkit/go-compile:a1e3cd3a54b1ad683b555655282272d0eb27ee40
linuxkit/go-compile:7cac05c5588b3dd6a7f7bdb34fc1da90257394c7
```
To update a single dependency:
@ -32,7 +32,7 @@ docker run -it --rm \
-v $(pwd):/go/src/github.com/linuxkit/linuxkit \
-w /go/src/github.com/linuxkit/linuxkit/src/cmd/linuxkit \
--entrypoint /go/bin/vndr \
linuxkit/go-compile:a1e3cd3a54b1ad683b555655282272d0eb27ee40
linuxkit/go-compile:7cac05c5588b3dd6a7f7bdb34fc1da90257394c7
github.com/docker/docker
```