This change is needed to fix a Continuous Build pipeline run by @ehazlett which spits out master build binaries for Docker Machine. Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
13 lines
345 B
Docker
13 lines
345 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/tools/godep \
|
|
github.com/aktau/github-release
|
|
|
|
WORKDIR /go/src/github.com/docker/machine
|
|
|
|
ADD . /go/src/github.com/docker/machine
|