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