Files
docker-machine/Dockerfile
Nathan LeClaire 4de87fd7fa Bump to Golang 1.6.1
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2016-04-13 11:12:57 -07:00

12 lines
223 B
Docker

FROM golang:1.6.1
RUN go get github.com/golang/lint/golint \
github.com/mattn/goveralls \
golang.org/x/tools/cover
ENV USER root
WORKDIR /go/src/github.com/docker/machine
COPY . ./
RUN mkdir bin