mirror of
https://github.com/bitnami/containers.git
synced 2026-03-21 15:29:05 +08:00
[bitnami/prometheus-rsocket-proxy] Release 1.5.0-debian-11-r17 (#9353)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -4,7 +4,7 @@ ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
org.opencontainers.image.ref.name="1.5.0-debian-11-r16" \
|
||||
org.opencontainers.image.ref.name="1.5.0-debian-11-r17" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/prometheus-rsocket-proxy" \
|
||||
org.opencontainers.image.title="prometheus-rsocket-proxy" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
@@ -18,23 +18,21 @@ ENV HOME="/" \
|
||||
COPY prebuildfs /
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl libc6 libgcc-s1 procps
|
||||
RUN install_packages ca-certificates curl libgcc-s1 procps
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f java-1.8.345-2-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/java-1.8.345-2-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/java-1.8.345-2-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
sha256sum -c java-1.8.345-2-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf java-1.8.345-2-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf java-1.8.345-2-linux-${OS_ARCH}-debian-11.tar.gz java-1.8.345-2-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f prometheus-rsocket-proxy-1.5.0-1-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/prometheus-rsocket-proxy-1.5.0-1-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/prometheus-rsocket-proxy-1.5.0-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
sha256sum -c prometheus-rsocket-proxy-1.5.0-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf prometheus-rsocket-proxy-1.5.0-1-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf prometheus-rsocket-proxy-1.5.0-1-linux-${OS_ARCH}-debian-11.tar.gz prometheus-rsocket-proxy-1.5.0-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
||||
COMPONENTS=( \
|
||||
"java-1.8.345-3-linux-${OS_ARCH}-debian-11" \
|
||||
"prometheus-rsocket-proxy-1.5.0-2-linux-${OS_ARCH}-debian-11" \
|
||||
) && \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
|
||||
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${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 --wildcards '*/files' && \
|
||||
rm -rf "${COMPONENT}.tar.gz{,sha256}" ; \
|
||||
done
|
||||
RUN apt-get autoremove --purge -y curl && \
|
||||
apt-get update && apt-get upgrade -y && \
|
||||
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
{
|
||||
"java": {
|
||||
"arch": "amd64",
|
||||
"digest": "b244bc8c1f972d20fac8019cf97fb05ce6cd8be2034ca11f52243c8bd96aaa23",
|
||||
"digest": "b1be7e5123db5121091938641cf6e02ff0e3753e7ff90edf2a9689902fa781cb",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.8.345-2"
|
||||
"version": "1.8.345-3"
|
||||
},
|
||||
"prometheus-rsocket-proxy": {
|
||||
"arch": "amd64",
|
||||
"digest": "fcf529dd2c6e3b0c9e5f4a5693697cbf06fbd60ede3bbac6a511c6507671078e",
|
||||
"digest": "2d4d92071702ab40b687b36b8d45fb4ea116a693a6e85d46404f94a74ec1af18",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.5.0-1"
|
||||
"version": "1.5.0-2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user