mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
5e8026779f
This way the binary will be built in a clear environment and prometheus can be added to the docker index. Change-Id: I417fb90adf2503c990a96f4bad370b09b102e0b9
11 lines
379 B
Docker
11 lines
379 B
Docker
FROM ubuntu:13.10
|
|
MAINTAINER Prometheus Team <prometheus-developers@googlegroups.com>
|
|
EXPOSE 9090
|
|
VOLUME [ "/prometheus" ]
|
|
WORKDIR /prometheus
|
|
|
|
ENTRYPOINT [ "/prometheus-src/.build/package/run_prometheus.sh" ]
|
|
RUN apt-get update && apt-get install -yq make git curl sudo mercurial
|
|
ADD . /prometheus-src
|
|
RUN cd /prometheus-src && make binary
|