cadvisor/deploy/Dockerfile
Vishnu Kannan 6e66310385 Update Dockerfile to work with glog.
Docker-DCO-1.1-Signed-off-by: Vishnu Kannan <vishnuk@google.com> (github: vishh)
2014-08-12 06:24:55 +00:00

12 lines
266 B
Docker

FROM scratch
MAINTAINER dengnan@google.com vmarmol@google.com
# NOTE: Run prepare.sh before building this Docker image.
# Grab cadvisor from the staging directory.
ADD cadvisor /usr/bin/cadvisor
EXPOSE 8080
ENTRYPOINT ["/usr/bin/cadvisor"]
CMD ["-log_dir", "/"]