github.com/timstclair/heapster@v0.20.0-alpha1/deploy/docker/canary/Dockerfile (about)

     1  FROM golang:1.4.3
     2  MAINTAINER vishnuk@google.com
     3  
     4  RUN apt-get install -y git
     5  RUN git clone https://github.com/kubernetes/heapster.git /go/src/k8s.io/heapster
     6  
     7  RUN cd /go/src/k8s.io/heapster && make && mv heapster /heapster 
     8  
     9  # TODO: Replace the above with:
    10  # RUN cd /go/src/k8s.io/heapster && git checkout -b heapster-scalability remotes/origin/heapster-scalability \
    11  #  && make && mv heapster /heapster && mv eventer /eventer
    12  
    13  ENTRYPOINT ["/heapster"]