Files
docker-machine/Dockerfile
Julien Barbot 46b43ebeea Update path of golint
The new path is golang.org/x/lint/golint.
See ead987a65e.

Signed-off-by: Julien Barbot <jubarbot@cisco.com>
2018-10-31 16:39:04 -07:00

19 lines
430 B
Docker

FROM golang:1.10.0
RUN apt-get update && apt-get install -y --no-install-recommends \
openssh-client \
rsync \
fuse \
sshfs \
&& rm -rf /var/lib/apt/lists/*
RUN go get golang.org/x/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