prometheus/Dockerfile

13 lines
490 B
Docker
Raw Normal View History

FROM ubuntu:13.10
2013-08-05 12:40:24 +00:00
MAINTAINER Prometheus Team <prometheus-developers@googlegroups.com>
EXPOSE 9090
VOLUME [ "/prometheus" ]
WORKDIR /prometheus
2014-12-04 19:47:17 +00:00
ENTRYPOINT [ "/prometheus-src/prometheus" ]
CMD [ "-config.file=/prometheus.conf" ]
RUN apt-get update && apt-get install -yq make git curl sudo mercurial vim-common
ADD . /prometheus-src
RUN cd /prometheus-src && make tools binary
2014-12-03 13:53:35 +00:00
ADD ./documentation/examples/prometheus.conf /prometheus.conf