prometheus/Dockerfile

13 lines
490 B
Docker
Raw Normal View History

FROM ubuntu:13.10
2013-08-05 05:40:24 -07:00
MAINTAINER Prometheus Team <prometheus-developers@googlegroups.com>
EXPOSE 9090
VOLUME [ "/prometheus" ]
WORKDIR /prometheus
2014-12-04 11:47:17 -08: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 05:53:35 -08:00
ADD ./documentation/examples/prometheus.conf /prometheus.conf