Files
docker-machine/Dockerfile
Anders F Björklund a462fc30e0 Add delta option to the scp command, using rsync
When doing repeated syncs, or copying large directories, it is more
efficient to use "rsync" than to use "scp". Both use "ssh" to do it.

Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
2017-03-10 07:17:52 +01:00

17 lines
387 B
Docker

FROM golang:1.7.4
RUN apt-get update && apt-get install -y --no-install-recommends \
openssh-client \
rsync \
&& 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