mirror of https://github.com/docker/docs.git
10 lines
425 B
Docker
10 lines
425 B
Docker
FROM golang:1.3-cross
|
|
RUN apt-get update && apt-get install -y --no-install-recommends openssh-client
|
|
RUN go get github.com/mitchellh/gox
|
|
RUN go get github.com/aktau/github-release
|
|
RUN go get github.com/tools/godep
|
|
ENV GOPATH /go/src/github.com/docker/machine/Godeps/_workspace:/go
|
|
ENV MACHINE_BINARY /go/src/github.com/docker/machine/machine
|
|
WORKDIR /go/src/github.com/docker/machine
|
|
ADD . /go/src/github.com/docker/machine
|