2015-06-20 13:14:08 +00:00
|
|
|
FROM sdurrheimer/alpine-glibc
|
|
|
|
MAINTAINER The Prometheus Authors <prometheus-developers@googlegroups.com>
|
2015-01-12 14:15:26 +00:00
|
|
|
|
2015-09-18 07:34:17 +00:00
|
|
|
WORKDIR /gopath/src/github.com/prometheus/prometheus
|
|
|
|
COPY . /gopath/src/github.com/prometheus/prometheus
|
2015-01-12 14:15:26 +00:00
|
|
|
|
2015-09-18 07:34:17 +00:00
|
|
|
RUN apk add --update -t build-deps tar openssl git make bash \
|
|
|
|
&& source ./scripts/goenv.sh /go /gopath \
|
2015-06-20 13:14:08 +00:00
|
|
|
&& make build \
|
|
|
|
&& cp prometheus promtool /bin/ \
|
2015-04-23 19:15:23 +00:00
|
|
|
&& mkdir -p /etc/prometheus \
|
2015-05-22 15:08:27 +00:00
|
|
|
&& mv ./documentation/examples/prometheus.yml /etc/prometheus/prometheus.yml \
|
2015-04-23 19:15:23 +00:00
|
|
|
&& mv ./console_libraries/ ./consoles/ /etc/prometheus/ \
|
2015-06-20 13:14:08 +00:00
|
|
|
&& apk del --purge build-deps \
|
2015-09-18 07:34:17 +00:00
|
|
|
&& rm -rf /go /gopath /var/cache/apk/*
|
2015-01-12 14:15:26 +00:00
|
|
|
|
2014-02-06 16:29:37 +00:00
|
|
|
EXPOSE 9090
|
2015-04-24 14:12:31 +00:00
|
|
|
VOLUME [ "/prometheus" ]
|
2014-02-06 16:29:37 +00:00
|
|
|
WORKDIR /prometheus
|
2015-04-23 19:15:23 +00:00
|
|
|
ENTRYPOINT [ "/bin/prometheus" ]
|
2015-05-22 15:08:27 +00:00
|
|
|
CMD [ "-config.file=/etc/prometheus/prometheus.yml", \
|
2015-03-03 23:34:35 +00:00
|
|
|
"-storage.local.path=/prometheus", \
|
2015-04-23 19:15:23 +00:00
|
|
|
"-web.console.libraries=/etc/prometheus/console_libraries", \
|
|
|
|
"-web.console.templates=/etc/prometheus/consoles" ]
|