| ARG DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith |
| ARG TARGETARCH=amd64 |
| LABEL org.opencontainers.image.base.name=docker.io/bitnami/minideb:bookworm org.opencontainers.image.created=2026-02-05T04:13:18Z org.opencontainers.image.description=Application packaged by Broadcom, Inc. org.opencontainers.image.documentation=https://github.com/bitnami/containers/tree/main/bitnami/prometheus/README.md org.opencontainers.image.source=https://github.com/bitnami/containers/tree/main/bitnami/prometheus org.opencontainers.image.title=prometheus org.opencontainers.image.vendor=Broadcom, Inc. org.opencontainers.image.version=3.9.1 |
| ENV HOME=/ OS_ARCH=amd64 OS_FLAVOUR=debian-12 OS_NAME=linux |
| COPY prebuildfs / # buildkit |
| SHELL [/bin/bash -o errexit -o nounset -o pipefail -c] |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c install_packages ca-certificates curl procps # buildkit |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c DOWNLOADS_URL=${SECRET_DOWNLOADS_URL:-${DOWNLOADS_URL}} ; mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; COMPONENTS=( "prometheus-3.9.1-2-linux-${OS_ARCH}-debian-12" ) ; for COMPONENT in "${COMPONENTS[@]}"; do if [ ! -f "${COMPONENT}.tar.gz" ]; then curl -SsLf "https://${DOWNLOADS_URL}/${COMPONENT}.tar.gz" -O ; curl -SsLf "https://${DOWNLOADS_URL}/${COMPONENT}.tar.gz.sha256" -O ; fi ; sha256sum -c "${COMPONENT}.tar.gz.sha256" ; tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner ; rm -rf "${COMPONENT}".tar.gz{,.sha256} ; done # buildkit |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c apt-get update && apt-get upgrade -y && apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives # buildkit |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c chmod g+rwX /opt/bitnami # buildkit |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c find / -perm /6000 -type f -exec chmod a-s {} \; || true # buildkit |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c ln -sf /opt/bitnami/prometheus/conf /etc/prometheus # buildkit |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c ln -sf /opt/bitnami/prometheus/data /prometheus # buildkit |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c chown -R 1001:1001 /opt/bitnami/prometheus # buildkit |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c uninstall_packages curl # buildkit |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c mkdir -p /opt/bitnami/prometheus/data/ && chmod g+rwX /opt/bitnami/prometheus/data/ # buildkit |
| ENV APP_VERSION=3.9.1 BITNAMI_APP_NAME=prometheus IMAGE_REVISION=5 PATH=/opt/bitnami/prometheus/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| EXPOSE [9090/tcp] |
| 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"] |