github.com/misfo/deis@v1.0.1-0.20141111224634-e0eee0392b8a/logspout/Dockerfile (about)

     1  FROM golang:1.3
     2  MAINTAINER OpDemand <info@opdemand.com>
     3  
     4  WORKDIR /go/src/github.com/deis/deis/logspout
     5  
     6  ENV CGO_ENABLED 0
     7  
     8  RUN go get github.com/tools/godep
     9  
    10  ADD . /go/src/github.com/deis/deis/logspout
    11  
    12  RUN godep go build -a -ldflags '-s' && cp logspout /go/bin/logspout