新增cadvisor构建文件

This commit is contained in:
KennyLee 2017-06-23 09:56:33 +08:00
parent 37cf64ff1f
commit 65b9fe2aa7

8
cadvisor/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM golang:latest
MAINTAINER vmarmol@google.com
RUN 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"]