Files
docker-machine/Dockerfile
David Gageot 66634bcaa0 Switching to go 1.10
Signed-off-by: David Gageot <david@gageot.net>
2018-03-20 17:22:16 +01:00

19 lines
435 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 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