2016-12-08 14:33:19 -08:00
|
|
|
FROM golang:1.7.4
|
2015-01-30 16:45:44 -08:00
|
|
|
|
2015-10-07 13:38:55 -07:00
|
|
|
RUN go get github.com/golang/lint/golint \
|
2015-09-11 14:56:17 -07:00
|
|
|
github.com/mattn/goveralls \
|
2016-02-13 01:19:13 +01:00
|
|
|
golang.org/x/tools/cover
|
2015-01-30 16:45:44 -08:00
|
|
|
|
2015-10-20 14:54:32 +02:00
|
|
|
ENV USER root
|
2014-12-08 16:46:40 -08:00
|
|
|
WORKDIR /go/src/github.com/docker/machine
|
2015-01-30 16:45:44 -08:00
|
|
|
|
2016-02-13 01:19:13 +01:00
|
|
|
COPY . ./
|
2015-11-12 09:53:03 +01:00
|
|
|
RUN mkdir bin
|