github.com/misfo/deis@v1.0.1-0.20141111224634-e0eee0392b8a/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