2019-04-15 12:27:00 +00:00
|
|
|
ARG ARCH="amd64"
|
|
|
|
ARG OS="linux"
|
|
|
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
|
2018-08-27 02:43:53 +00:00
|
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
2015-01-12 14:15:26 +00:00
|
|
|
|
2019-04-15 12:27:00 +00:00
|
|
|
ARG ARCH="amd64"
|
|
|
|
ARG OS="linux"
|
|
|
|
COPY .build/${OS}-${ARCH}/prometheus /bin/prometheus
|
|
|
|
COPY .build/${OS}-${ARCH}/promtool /bin/promtool
|
2015-12-21 17:09:38 +00:00
|
|
|
COPY documentation/examples/prometheus.yml /etc/prometheus/prometheus.yml
|
2019-10-17 12:38:09 +00:00
|
|
|
COPY LICENSE /LICENSE
|
|
|
|
COPY NOTICE /NOTICE
|
|
|
|
COPY npm_licenses.tar.bz2 /npm_licenses.tar.bz2
|
2016-07-29 13:00:47 +00:00
|
|
|
|
2021-09-30 09:13:44 +00:00
|
|
|
WORKDIR /prometheus
|
2024-09-02 11:59:29 +00:00
|
|
|
RUN chown -R nobody:nobody /etc/prometheus /prometheus
|
2015-01-12 14:15:26 +00:00
|
|
|
|
2017-06-19 09:33:39 +00:00
|
|
|
USER nobody
|
2014-02-06 16:29:37 +00:00
|
|
|
EXPOSE 9090
|
2015-04-24 14:12:31 +00:00
|
|
|
VOLUME [ "/prometheus" ]
|
2018-12-10 08:19:01 +00:00
|
|
|
ENTRYPOINT [ "/bin/prometheus" ]
|
2019-01-21 11:57:16 +00:00
|
|
|
CMD [ "--config.file=/etc/prometheus/prometheus.yml", \
|
2024-09-02 11:59:29 +00:00
|
|
|
"--storage.tsdb.path=/prometheus" ]
|