2015-04-23 19:15:23 +00:00
|
|
|
FROM alpine:edge
|
2015-01-21 19:07:45 +00:00
|
|
|
MAINTAINER The Prometheus Authors <prometheus-developers@googlegroups.com>
|
2015-01-12 14:15:26 +00:00
|
|
|
|
2015-04-23 19:15:23 +00:00
|
|
|
ENV GOPATH /go
|
|
|
|
COPY . /go/src/github.com/prometheus/prometheus
|
2015-01-12 14:15:26 +00:00
|
|
|
|
2015-04-23 19:15:23 +00:00
|
|
|
RUN apk add --update -t build-deps go git mercurial vim \
|
|
|
|
&& apk add -u musl && rm -rf /var/cache/apk/* \
|
|
|
|
&& go get github.com/tools/godep \
|
|
|
|
&& cd /go/src/github.com/prometheus/prometheus \
|
|
|
|
&& $GOPATH/bin/godep restore && go get -d \
|
2015-05-28 20:03:34 +00:00
|
|
|
&& ./scripts/embed-static.sh web/static web/templates | gofmt > web/blob/files.go \
|
2015-04-23 19:15:23 +00:00
|
|
|
&& go build -ldflags " \
|
|
|
|
-X main.buildVersion $(cat VERSION) \
|
|
|
|
-X main.buildRevision $(git rev-parse --short HEAD) \
|
|
|
|
-X main.buildBranch $(git rev-parse --abbrev-ref HEAD) \
|
|
|
|
-X main.buildUser root \
|
|
|
|
-X main.buildDate $(date +%Y%m%d-%H:%M:%S) \
|
|
|
|
-X main.goVersion $(go version | awk '{print substr($3,3)}') \
|
|
|
|
" -o /bin/prometheus \
|
2015-04-24 15:29:42 +00:00
|
|
|
&& cd tools/rule_checker && go build -o /bin/rule_checker && cd ../.. \
|
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/ \
|
|
|
|
&& rm -rf /go \
|
|
|
|
&& apk del --purge build-deps
|
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" ]
|