41 lines
2.1 KiB
Docker
41 lines
2.1 KiB
Docker
FROM docker.io/bitnami/minideb:bullseye
|
|
ENV HOME="/" \
|
|
OS_ARCH="amd64" \
|
|
OS_FLAVOUR="debian-11" \
|
|
OS_NAME="linux"
|
|
|
|
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
|
org.opencontainers.image.description="Application packaged by Bitnami" \
|
|
org.opencontainers.image.ref.name="2.37.0-debian-11-r11" \
|
|
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/prometheus" \
|
|
org.opencontainers.image.title="prometheus" \
|
|
org.opencontainers.image.vendor="VMware, Inc." \
|
|
org.opencontainers.image.version="2.37.0"
|
|
|
|
COPY prebuildfs /
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
# Install required system packages and dependencies
|
|
RUN install_packages ca-certificates curl gzip procps tar wget
|
|
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/prometheus-2.37.0-2-linux-amd64-debian-11.tar.gz && \
|
|
echo "7c424a07170cbf327980ebd9966c88fdba175b842948a98b0f96a44b6da85dec /tmp/bitnami/pkg/cache/prometheus-2.37.0-2-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
|
tar -zxf /tmp/bitnami/pkg/cache/prometheus-2.37.0-2-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
|
rm -rf /tmp/bitnami/pkg/cache/prometheus-2.37.0-2-linux-amd64-debian-11.tar.gz
|
|
RUN apt-get update && apt-get upgrade -y && \
|
|
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
|
RUN chmod g+rwX /opt/bitnami
|
|
RUN ln -sf /opt/bitnami/prometheus/conf /etc/prometheus
|
|
RUN ln -sf /opt/bitnami/prometheus/data /prometheus
|
|
RUN chown -R 1001:1001 /opt/bitnami/prometheus
|
|
|
|
RUN mkdir -p /opt/bitnami/prometheus/data/ && chmod g+rwX /opt/bitnami/prometheus/data/
|
|
ENV APP_VERSION="2.37.0" \
|
|
BITNAMI_APP_NAME="prometheus" \
|
|
PATH="/opt/bitnami/prometheus/bin:$PATH"
|
|
|
|
EXPOSE 9090
|
|
|
|
WORKDIR /opt/bitnami/prometheus
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/prometheus/bin/prometheus" ]
|
|
CMD [ "--config.file=/opt/bitnami/prometheus/conf/prometheus.yml", "--storage.tsdb.path=/opt/bitnami/prometheus/data", "--web.console.libraries=/opt/bitnami/prometheus/conf/console_libraries", "--web.console.templates=/opt/bitnami/prometheus/conf/consoles" ]
|