mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
7 lines
250 B
Docker
7 lines
250 B
Docker
FROM golang:1.3-cross
|
|
RUN go get github.com/mitchellh/gox
|
|
RUN go get github.com/aktau/github-release
|
|
ENV GOPATH /go/src/github.com/docker/machine/Godeps/_workspace:/go
|
|
WORKDIR /go/src/github.com/docker/machine
|
|
ADD . /go/src/github.com/docker/machine
|