2015-06-12 09:19:25 -07:00
|
|
|
FROM alpine:3.2
|
2015-01-21 11:07:45 -08:00
|
|
|
MAINTAINER The Prometheus Authors <prometheus-developers@googlegroups.com>
|
2015-01-12 06:15:26 -08:00
|
|
|
|
2015-06-21 10:53:09 -07:00
|
|
|
ENV GOPATH=/go \
|
|
|
|
REPO_PATH=github.com/prometheus/prometheus
|
2015-04-23 12:15:23 -07:00
|
|
|
COPY . /go/src/github.com/prometheus/prometheus
|
2015-01-12 06:15:26 -08:00
|
|
|
|
2015-06-12 09:19:25 -07:00
|
|
|
RUN apk add --update -t build-deps go git mercurial \
|
2015-04-23 12:15:23 -07:00
|
|
|
&& apk add -u musl && rm -rf /var/cache/apk/* \
|
2015-06-21 10:53:09 -07:00
|
|
|
&& cd /go/src/$REPO_PATH \
|
2015-06-23 14:58:09 -07:00
|
|
|
&& cp -a ./Godeps/_workspace/* "$GOPATH" \
|
2015-06-25 11:59:55 -07:00
|
|
|
&& BUILD_FLAGS=" \
|
|
|
|
-X $REPO_PATH/version.Version $(cat version/VERSION) \
|
|
|
|
-X $REPO_PATH/version.Revision $(git rev-parse --short HEAD) \
|
|
|
|
-X $REPO_PATH/version.Branch $(git rev-parse --abbrev-ref HEAD) \
|
|
|
|
-X $REPO_PATH/version.BuildUser root@$(hostname -f) \
|
|
|
|
-X $REPO_PATH/version.BuildDate $(date +%Y%m%d-%H:%M:%S) \
|
|
|
|
-X $REPO_PATH/version.GoVersion $(go version | awk '{print substr($3,3)}')" \
|
|
|
|
&& go build -ldflags "$BUILD_FLAGS" -o /bin/prometheus $REPO_PATH/cmd/prometheus \
|
|
|
|
&& go build -ldflags "$BUILD_FLAGS" -o /bin/promtool $REPO_PATH/cmd/promtool \
|
2015-04-23 12:15:23 -07:00
|
|
|
&& mkdir -p /etc/prometheus \
|
2015-05-22 08:08:27 -07:00
|
|
|
&& mv ./documentation/examples/prometheus.yml /etc/prometheus/prometheus.yml \
|
2015-04-23 12:15:23 -07:00
|
|
|
&& mv ./console_libraries/ ./consoles/ /etc/prometheus/ \
|
|
|
|
&& rm -rf /go \
|
|
|
|
&& apk del --purge build-deps
|
2015-01-12 06:15:26 -08:00
|
|
|
|
2014-02-06 08:29:37 -08:00
|
|
|
EXPOSE 9090
|
2015-04-24 07:12:31 -07:00
|
|
|
VOLUME [ "/prometheus" ]
|
2014-02-06 08:29:37 -08:00
|
|
|
WORKDIR /prometheus
|
2015-04-23 12:15:23 -07:00
|
|
|
ENTRYPOINT [ "/bin/prometheus" ]
|
2015-05-22 08:08:27 -07:00
|
|
|
CMD [ "-config.file=/etc/prometheus/prometheus.yml", \
|
2015-03-03 15:34:35 -08:00
|
|
|
"-storage.local.path=/prometheus", \
|
2015-04-23 12:15:23 -07:00
|
|
|
"-web.console.libraries=/etc/prometheus/console_libraries", \
|
|
|
|
"-web.console.templates=/etc/prometheus/consoles" ]
|