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