cadvisor/deploy/Dockerfile
Vishnu Kannan 7ed645f004 Avoid compiling cadvisor statically for the docker image by deriving the image from a stripped down busybox image.
Log failures encountered while dumping to influxdb
Handle critical failures in cadvisor gracefully without getting stuck.
2014-09-19 17:23:45 +00:00

9 lines
212 B
Docker

FROM progrium/busybox
MAINTAINER dengnan@google.com vmarmol@google.com vishnuk@google.com
# Grab cadvisor from the staging directory.
ADD cadvisor /usr/bin/cadvisor
EXPOSE 8080
ENTRYPOINT ["/usr/bin/cadvisor"]