github.com/mgood/deis@v1.0.2-0.20141120022609-9a185b756e7d/publisher/Dockerfile (about) 1 FROM golang:1.3 2 3 WORKDIR /go/src/github.com/deis/deis/publisher 4 CMD /go/bin/publisher 5 6 RUN go get github.com/tools/godep 7 8 ADD . /go/src/github.com/deis/deis/publisher 9 10 RUN CGO_ENABLED=0 godep go build -a -ldflags '-s' github.com/deis/deis/publisher 11 12 RUN cp publisher /go/bin/publisher