[bitnami/jmx-exporter] Release 0.17.0-debian-11-r30 (#4400)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
56ae63b3a3
commit
5b0ca6d275
|
|
@ -6,7 +6,7 @@ ENV HOME="/" \
|
|||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
org.opencontainers.image.ref.name="0.17.0-debian-11-r29" \
|
||||
org.opencontainers.image.ref.name="0.17.0-debian-11-r30" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/jmx-exporter" \
|
||||
org.opencontainers.image.title="jmx-exporter" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
|
|
@ -15,15 +15,21 @@ LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
|||
COPY prebuildfs /
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl gzip libc6 libgcc-s1 procps tar wget
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/java-1.8.345-1-linux-amd64-debian-11.tar.gz && \
|
||||
echo "4d90bf2066c8d6605ac771e9b97c1188f4491d458fcb56956eeead6a18f70ac4 /tmp/bitnami/pkg/cache/java-1.8.345-1-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/java-1.8.345-1-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/java-1.8.345-1-linux-amd64-debian-11.tar.gz
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jmx-exporter-0.17.0-152-linux-amd64-debian-11.tar.gz && \
|
||||
echo "f84fd1b07ad604edde46e656288d2e7f6e2c3373af82ada8d3f8b29d73b1bfc9 /tmp/bitnami/pkg/cache/jmx-exporter-0.17.0-152-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/jmx-exporter-0.17.0-152-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/jmx-exporter-0.17.0-152-linux-amd64-debian-11.tar.gz
|
||||
RUN install_packages ca-certificates curl gzip libc6 libgcc-s1 procps tar
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f java-1.8.345-2-linux-amd64-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/java-1.8.345-2-linux-amd64-debian-11.tar.gz -O ; \
|
||||
fi && \
|
||||
echo "b244bc8c1f972d20fac8019cf97fb05ce6cd8be2034ca11f52243c8bd96aaa23 java-1.8.345-2-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf java-1.8.345-2-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --wildcards '*/files' && \
|
||||
rm -rf java-1.8.345-2-linux-amd64-debian-11.tar.gz
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f jmx-exporter-0.17.0-153-linux-amd64-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/jmx-exporter-0.17.0-153-linux-amd64-debian-11.tar.gz -O ; \
|
||||
fi && \
|
||||
echo "95857474dfa55e16573c24d3b7d66a679664db888d684665a6a00afce3db820c jmx-exporter-0.17.0-153-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf jmx-exporter-0.17.0-153-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --wildcards '*/files' && \
|
||||
rm -rf jmx-exporter-0.17.0-153-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
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
{
|
||||
"java": {
|
||||
"arch": "amd64",
|
||||
"digest": "4d90bf2066c8d6605ac771e9b97c1188f4491d458fcb56956eeead6a18f70ac4",
|
||||
"digest": "b244bc8c1f972d20fac8019cf97fb05ce6cd8be2034ca11f52243c8bd96aaa23",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.8.345-1"
|
||||
"version": "1.8.345-2"
|
||||
},
|
||||
"jmx-exporter": {
|
||||
"arch": "amd64",
|
||||
"digest": "f84fd1b07ad604edde46e656288d2e7f6e2c3373af82ada8d3f8b29d73b1bfc9",
|
||||
"digest": "95857474dfa55e16573c24d3b7d66a679664db888d684665a6a00afce3db820c",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "0.17.0-152"
|
||||
"version": "0.17.0-153"
|
||||
}
|
||||
}
|
||||
|
|
@ -32,7 +32,7 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`0`, `0-debian-11`, `0.17.0`, `0.17.0-debian-11-r29`, `latest` (0/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/jmx-exporter/0/debian-11/Dockerfile)
|
||||
* [`0`, `0-debian-11`, `0.17.0`, `0.17.0-debian-11-r30`, `latest` (0/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/jmx-exporter/0/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue