- USE_CONTAINER allow to seamlessly run targets inside or outside containers - all build calls have been harmonized, honoring the same env variables - contributing doc has been streamlined according to that - kill the distinction between remote and local docker builds - got rid of some of the byzantine calls in various asorted scripts - support for static build, debug builds, verbose Signed-off-by: Olivier Gambier <olivier@docker.com>
11 lines
307 B
Docker
11 lines
307 B
Docker
FROM golang:1.5
|
|
|
|
RUN go get github.com/mitchellh/gox \
|
|
github.com/golang/lint/golint \
|
|
github.com/mattn/goveralls \
|
|
golang.org/x/tools/cover \
|
|
github.com/aktau/github-release
|
|
|
|
WORKDIR /go/src/github.com/docker/machine
|
|
|
|
ADD . /go/src/github.com/docker/machine |