node_exporter/Dockerfile

17 lines
622 B
Docker
Raw Normal View History

2014-02-07 10:35:57 -08:00
FROM ubuntu:13.10
MAINTAINER Prometheus Team <prometheus-developers@googlegroups.com>
RUN apt-get update && apt-get install -yq curl git mercurial make
RUN curl -s https://go.googlecode.com/files/go1.2.linux-amd64.tar.gz | tar -C /usr/local -xzf -
ENV PATH /usr/local/go/bin:$PATH
ENV GOPATH /go
ADD . /usr/src/node_exporter
2014-02-12 09:37:45 -08:00
RUN cd /usr/src/node_exporter && \
go get -d && go build && cp node_exporter /
2014-02-07 10:35:57 -08:00
RUN printf '{ "scrapeInterval": 10, "attributes": {} }' > \
node_exporter.conf
ENTRYPOINT [ "/node_exporter" ]
EXPOSE 8080