cadvisor/deploy/canary/Dockerfile
David Ashpole d4a4d8c960 fix builds
2017-09-07 10:47:04 -07:00

10 lines
319 B
Docker

FROM golang:latest
MAINTAINER vmarmol@google.com
RUN apt-get update && apt-get install -y git dmsetup && apt-get clean
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"]