2015-01-12 06:15:26 -08:00
|
|
|
FROM golang:1.4
|
2015-01-21 11:07:45 -08:00
|
|
|
MAINTAINER The Prometheus Authors <prometheus-developers@googlegroups.com>
|
2015-01-12 06:15:26 -08:00
|
|
|
RUN apt-get -qy update && apt-get -qy install vim-common gcc mercurial && \
|
|
|
|
go get github.com/tools/godep
|
|
|
|
|
|
|
|
WORKDIR /go/src/github.com/prometheus/prometheus
|
|
|
|
ADD . /go/src/github.com/prometheus/prometheus
|
|
|
|
|
|
|
|
RUN godep restore && go get -d
|
|
|
|
RUN ./utility/embed-static.sh web/static web/templates | gofmt > web/blob/files.go
|
|
|
|
|
|
|
|
RUN 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 $GOLANG_VERSION \
|
|
|
|
"
|
|
|
|
RUN cd tools/rule_checker && go build
|
|
|
|
ADD ./documentation/examples/prometheus.conf /prometheus.conf
|
|
|
|
|
2014-02-06 08:29:37 -08:00
|
|
|
EXPOSE 9090
|
|
|
|
VOLUME [ "/prometheus" ]
|
|
|
|
WORKDIR /prometheus
|
2015-01-12 06:15:26 -08:00
|
|
|
ENTRYPOINT [ "/go/src/github.com/prometheus/prometheus/prometheus" ]
|
|
|
|
CMD [ "-logtostderr", "-config.file=/prometheus.conf" ]
|