Skip to content

Commit a10fb2c

Browse files
committed
Add Grafana Pyroscope v3.0.0 Debian 12 support
This commit adds support for Grafana Pyroscope version 3.0.0 on Debian 12. It includes the creation of README, Dockerfile.
1 parent 16de494 commit a10fb2c

File tree

7 files changed

+209
-0
lines changed

7 files changed

+209
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Copyright Broadcom, Inc. All Rights Reserved.
2+
# SPDX-License-Identifier: APACHE-2.0
3+
4+
FROM docker.io/bitnami/minideb:bookworm
5+
6+
ARG TARGETARCH
7+
8+
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
9+
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
10+
org.opencontainers.image.created="2024-06-15T01:05:00Z" \
11+
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
12+
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/grafana-pyroscope/README.md" \
13+
org.opencontainers.image.licenses="Apache-2.0" \
14+
org.opencontainers.image.ref.name="3.0.0-debian-12-r6" \
15+
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/grafana-pyroscope" \
16+
org.opencontainers.image.title="grafana-pyroscoppe" \
17+
org.opencontainers.image.vendor="Broadcom, Inc." \
18+
org.opencontainers.image.version="3.0.0"
19+
20+
ENV HOME="/" \
21+
OS_ARCH="${TARGETARCH:-amd64}" \
22+
OS_FLAVOUR="debian-12" \
23+
OS_NAME="linux"
24+
25+
COPY prebuildfs /
26+
SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
27+
# Install required system packages and dependencies
28+
RUN install_packages ca-certificates curl procps
29+
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
30+
COMPONENTS=( \
31+
"pyroscope_1.6.0_linux_${OS_ARCH}" \
32+
) ; \
33+
for COMPONENT in "${COMPONENTS[@]}"; do \
34+
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
35+
curl -SsLf "https://github.com/grafana/pyroscope/releases/download/v1.6.0/${COMPONENT}.tar.gz" -O ; \
36+
curl -SsLf "https://github.com/grafana/pyroscope/releases/download/v1.6.0/checksums.txt" -O ; \
37+
fi ; \
38+
grep "${COMPONENT}.tar.gz" checksums.txt | sha256sum -c - ; \
39+
mkdir -p /opt/bitnami/grafana-pyroscope/bin ; \
40+
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami/grafana-pyroscope/bin --no-same-owner pyroscope; \
41+
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
42+
done
43+
RUN apt-get autoremove --purge -y curl && \
44+
apt-get update && apt-get upgrade -y && \
45+
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
46+
RUN chmod g+rwX /opt/bitnami
47+
RUN mkdir -p /bitnami/grafana-pyroscope/data /bitnami/grafana-pyroscope/pyroscope && chmod -R g+rwX /bitnami/grafana-pyroscope && ln -s /bitnami/grafana-pyroscope/pyroscope /etc/pyroscope && ln -s /bitnami/grafana-pyroscope/data /data
48+
RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true
49+
50+
ENV APP_VERSION="3.0.0" \
51+
BITNAMI_APP_NAME="grafana-pyroscope" \
52+
PATH="/opt/bitnami/grafana-pyroscope/bin:$PATH"
53+
54+
EXPOSE 4040
55+
56+
USER 1001
57+
ENTRYPOINT [ "pyroscope" ]
58+
CMD [ "-server.http-listen-port", "4040"]
59+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"grafana-loki": {
3+
"arch": "amd64",
4+
"distro": "debian-12",
5+
"type": "NAMI",
6+
"version": "3.0.0-3"
7+
}
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Bitnami containers ship with software bundles. You can find the licenses under:
2+
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/bin/sh
2+
# Copyright Broadcom, Inc. All Rights Reserved.
3+
# SPDX-License-Identifier: APACHE-2.0
4+
set -eu
5+
6+
n=0
7+
max=2
8+
export DEBIAN_FRONTEND=noninteractive
9+
10+
until [ $n -gt $max ]; do
11+
set +e
12+
(
13+
apt-get update -qq &&
14+
apt-get install -y --no-install-recommends "$@"
15+
)
16+
CODE=$?
17+
set -e
18+
if [ $CODE -eq 0 ]; then
19+
break
20+
fi
21+
if [ $n -eq $max ]; then
22+
exit $CODE
23+
fi
24+
echo "apt failed, retrying"
25+
n=$(($n + 1))
26+
done
27+
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/sh
2+
# Copyright Broadcom, Inc. All Rights Reserved.
3+
# SPDX-License-Identifier: APACHE-2.0
4+
set -u
5+
6+
if [ $# -eq 0 ]; then
7+
>&2 echo "No arguments provided"
8+
exit 1
9+
fi
10+
11+
script=$1
12+
exit_code="${2:-96}"
13+
fail_if_not_present="${3:-n}"
14+
15+
if test -f "$script"; then
16+
sh $script
17+
18+
if [ $? -ne 0 ]; then
19+
exit $((exit_code))
20+
fi
21+
elif [ "$fail_if_not_present" = "y" ]; then
22+
>&2 echo "script not found: $script"
23+
exit 127
24+
fi
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
rolling-tags:
2+
- "3"
3+
- 3-debian-12
4+
- 3.0.0
5+
- latest

bitnami/grafana-pyroscope/README.md

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Bitnami package for Pyroscope
2+
3+
## What is Pyroscope?
4+
5+
> Pyroscope is an open source continuous profiling platform. It allows you to monitor your applications in real time to identify performance bottlenecks and improve resource efficiency.
6+
7+
[Overview of Pyroscope](https://github.com/grafana/pyroscope)
8+
9+
Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
10+
11+
## TL;DR
12+
13+
```console
14+
docker run --name pyroscope bitnami/grafana-pyroscope:latest
15+
```
16+
17+
## Why use Bitnami Images?
18+
19+
* Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems.
20+
* With Bitnami images the latest bug fixes and features are available as soon as possible.
21+
* Bitnami containers, virtual machines and cloud images use the same components and configuration approach - making it easy to switch between formats based on your project needs.
22+
* All our images are based on [**minideb**](https://github.com/bitnami/minideb) -a minimalist Debian based container image that gives you a small base container image and the familiarity of a leading Linux distribution- or **scratch** -an explicitly empty image-.
23+
* All Bitnami images available in Docker Hub are signed with [Notation](https://notaryproject.dev/). [Check this post](https://blog.bitnami.com/2024/03/bitnami-packaged-containers-and-helm.html) to know how to verify the integrity of the images.
24+
* Bitnami container images are released on a regular basis with the latest distribution packages available.
25+
26+
## Get this image
27+
28+
The recommended way to get the Bitnami Pyroscope Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/pyroscope).
29+
30+
```console
31+
docker pull bitnami/pyroscope:latest
32+
```
33+
34+
To use a specific version, you can pull a versioned tag. You can view the [list of available versions](https://hub.docker.com/r/bitnami/pyroscope/tags/) in the Docker Hub Registry.
35+
36+
```console
37+
docker pull bitnami/pyroscope:[TAG]
38+
```
39+
40+
If you wish, you can also build the image yourself by cloning the repository, changing to the directory containing the Dockerfile, and executing the `docker build` command. Remember to replace the `APP`, `VERSION`, and `OPERATING-SYSTEM` path placeholders in the example command below with the correct values.
41+
42+
```console
43+
git clone https://github.com/bitnami/containers.git
44+
cd bitnami/APP/VERSION/OPERATING-SYSTEM
45+
docker build -t bitnami/APP:latest .
46+
```
47+
48+
## Why use a non-root container?
49+
50+
Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://docs.vmware.com/en/VMware-Tanzu-Application-Catalog/services/tutorials/GUID-work-with-non-root-containers-index.html).
51+
52+
## Configuration
53+
54+
### Running commands
55+
56+
To run commands inside this container you can use `docker run`, for example to execute `pyroscope --version` you can follow the example below:
57+
58+
```console
59+
docker run --rm --name pyroscope bitnami/pyroscope:latest -- --version
60+
```
61+
62+
## Contributing
63+
64+
We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/containers/issues) or submitting a [pull request](https://github.com/bitnami/containers/pulls) with your contribution.
65+
66+
## Issues
67+
68+
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/containers/issues/new/choose). For us to provide better support, be sure to fill the issue template.
69+
70+
## License
71+
72+
Copyright © 2024 Broadcom. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
73+
74+
Licensed under the Apache License, Version 2.0 (the "License");
75+
you may not use this file except in compliance with the License.
76+
You may obtain a copy of the License at
77+
78+
<http://www.apache.org/licenses/LICENSE-2.0>
79+
80+
Unless required by applicable law or agreed to in writing, software
81+
distributed under the License is distributed on an "AS IS" BASIS,
82+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
83+
See the License for the specific language governing permissions and
84+
limitations under the License.

0 commit comments

Comments
 (0)