mirror of https://github.com/docker/docs.git
17 lines
550 B
Docker
17 lines
550 B
Docker
FROM golang:1.3-cross
|
|
RUN apt-get update && apt-get install -y --no-install-recommends openssh-client
|
|
|
|
# TODO: Vendor these `go get` commands using Godep.
|
|
RUN go get github.com/mitchellh/gox
|
|
RUN go get github.com/aktau/github-release
|
|
RUN go get github.com/tools/godep
|
|
RUN go get code.google.com/p/go.tools/cmd/cover
|
|
|
|
ENV GOPATH /go/src/github.com/docker/machine/Godeps/_workspace:/go
|
|
ENV MACHINE_BINARY /go/src/github.com/docker/machine/docker-machine
|
|
ENV USER root
|
|
|
|
WORKDIR /go/src/github.com/docker/machine
|
|
|
|
ADD . /go/src/github.com/docker/machine
|