| 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-04T21:48:23Z org.opencontainers.image.description=Application packaged by Broadcom, Inc. org.opencontainers.image.documentation=https://github.com/bitnami/containers/tree/main/bitnami/grafana/README.md org.opencontainers.image.source=https://github.com/bitnami/containers/tree/main/bitnami/grafana org.opencontainers.image.title=grafana org.opencontainers.image.vendor=Broadcom, Inc. org.opencontainers.image.version=12.3.2 |
| 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 libaudit1 libcap-ng0 libfontconfig libgcc-s1 libicu72 liblzma5 libncurses6 libpam0g libssl3 libstdc++6 libtinfo6 libxml2 procps zlib1g # 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=( "mysql-client-12.1.2-0-linux-${OS_ARCH}-debian-12" "ini-file-1.4.9-7-linux-${OS_ARCH}-debian-12" "grafana-12.3.2-1-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 |
| COPY rootfs / # buildkit |
| RUN |2 DOWNLOADS_URL=downloads.bitnami.com/files/stacksmith TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c /opt/bitnami/scripts/grafana/postunpack.sh # buildkit |
| ENV APP_VERSION=12.3.2 BITNAMI_APP_NAME=grafana IMAGE_REVISION=1 PATH=/opt/bitnami/mysql/bin:/opt/bitnami/common/bin:/opt/bitnami/grafana/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| EXPOSE [3000/tcp] |
| WORKDIR /opt/bitnami/grafana |
| USER 1001 |
| ENTRYPOINT ["/opt/bitnami/scripts/grafana/entrypoint.sh"] |
| CMD ["/opt/bitnami/scripts/grafana/run.sh"] |