cadvisor/deploy/canary/Dockerfile
2017-09-06 15:47:58 -07:00

10 lines
321 B
Docker

FROM golang:latest
MAINTAINER vmarmol@google.com
RUN apt-cache update && apt-get clean && apt-get install -y git dmsetup
RUN git clone https://github.com/google/cadvisor.git /go/src/github.com/google/cadvisor
RUN cd /go/src/github.com/google/cadvisor && make
ENTRYPOINT ["/go/src/github.com/google/cadvisor/cadvisor"]