mirror of
https://github.com/bitnami/containers.git
synced 2026-03-14 06:48:11 +08:00
[bitnami/haproxy-intel] Release 2.6.6-debian-11-r5 (#9409)
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="2.6.6-debian-11-r4" \
|
||||
org.opencontainers.image.ref.name="2.6.6-debian-11-r5" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel" \
|
||||
org.opencontainers.image.title="haproxy-intel" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
@@ -20,29 +20,20 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl libssl1.1 procps
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f qatengine-0.6.15-1-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/qatengine-0.6.15-1-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/qatengine-0.6.15-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
sha256sum -c qatengine-0.6.15-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf qatengine-0.6.15-1-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf qatengine-0.6.15-1-linux-${OS_ARCH}-debian-11.tar.gz qatengine-0.6.15-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f haproxy-dataplaneapi-2.6.1-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/haproxy-dataplaneapi-2.6.1-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/haproxy-dataplaneapi-2.6.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
sha256sum -c haproxy-dataplaneapi-2.6.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf haproxy-dataplaneapi-2.6.1-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf haproxy-dataplaneapi-2.6.1-0-linux-${OS_ARCH}-debian-11.tar.gz haproxy-dataplaneapi-2.6.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f haproxy-2.6.6-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/haproxy-2.6.6-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/haproxy-2.6.6-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
sha256sum -c haproxy-2.6.6-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf haproxy-2.6.6-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf haproxy-2.6.6-0-linux-${OS_ARCH}-debian-11.tar.gz haproxy-2.6.6-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
||||
COMPONENTS=( \
|
||||
"qatengine-0.6.15-2-linux-${OS_ARCH}-debian-11" \
|
||||
"haproxy-dataplaneapi-2.6.1-1-linux-${OS_ARCH}-debian-11" \
|
||||
"haproxy-2.6.6-1-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,23 +1,23 @@
|
||||
{
|
||||
"haproxy": {
|
||||
"arch": "amd64",
|
||||
"digest": "fa6897d77c09a03a75d6aff725bc9f4a18509b48d734c4296053fe4bb96a7652",
|
||||
"digest": "70f84825705a2f97fb766d5a712100596b9933eea498877d6d219799bd13e861",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "2.6.6-0"
|
||||
"version": "2.6.6-1"
|
||||
},
|
||||
"haproxy-dataplaneapi": {
|
||||
"arch": "amd64",
|
||||
"digest": "1173f5fc7788f9c89051806c858f9d0e74ff707f2bcd08ca0ea3be44407ec0be",
|
||||
"digest": "d81f5879f8f319d586947d6263c7045e71790cf277f9b0cec8510f541ff14664",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "2.6.1-0"
|
||||
"version": "2.6.1-1"
|
||||
},
|
||||
"qatengine": {
|
||||
"arch": "amd64",
|
||||
"digest": "ef497fc4f1ec8fd3ace5df76edd510bf6b96838c429a7047e94048741f52d923",
|
||||
"digest": "985c22e620e69d44646dd8da7739d18ff4dc225aac7bf5a25f41a8aa91b1575c",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "0.6.15-1"
|
||||
"version": "0.6.15-2"
|
||||
}
|
||||
}
|
||||
@@ -35,7 +35,7 @@ Optimized containers fully leverage 3rd gen Intel(R) Xeon(R) Scalable Processor
|
||||
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/).
|
||||
|
||||
|
||||
* [`2`, `2-debian-11`, `2.6.6`, `2.6.6-debian-11-r4`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/haproxy-intel/2/debian-11/Dockerfile)
|
||||
* [`2`, `2-debian-11`, `2.6.6`, `2.6.6-debian-11-r5`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/haproxy-intel/2/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user