2.6.0-debian-11-r0 release
This commit is contained in:
parent
11aae2b832
commit
2d94d9ffd2
|
|
@ -0,0 +1,35 @@
|
|||
FROM docker.io/bitnami/minideb:bullseye
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="amd64" \
|
||||
OS_FLAVOUR="debian-11" \
|
||||
OS_NAME="linux"
|
||||
|
||||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl gzip libc6 libssl1.1 procps tar wget
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/qatengine-0.6.12-0-linux-amd64-debian-11.tar.gz && \
|
||||
echo "57098cc24a490e290afc0ebe3059f3b73a16bfeef1ee684ada940a9b63cd44e3 /tmp/bitnami/pkg/cache/qatengine-0.6.12-0-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/qatengine-0.6.12-0-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/qatengine-0.6.12-0-linux-amd64-debian-11.tar.gz
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/haproxy-dataplaneapi-2.5.3-0-linux-amd64-debian-11.tar.gz && \
|
||||
echo "8ebb129789299b720e34ef1d5713f56068e2202e7b0cccc33f8612c6734bc88c /tmp/bitnami/pkg/cache/haproxy-dataplaneapi-2.5.3-0-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/haproxy-dataplaneapi-2.5.3-0-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/haproxy-dataplaneapi-2.5.3-0-linux-amd64-debian-11.tar.gz
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/haproxy-2.6.0-1-linux-amd64-debian-11.tar.gz && \
|
||||
echo "5c3ca28ed9dc4bc8e7cc5ce1fac3a34f8c26bd105ccb564c7cb071efcaf7d771 /tmp/bitnami/pkg/cache/haproxy-2.6.0-1-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/haproxy-2.6.0-1-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/haproxy-2.6.0-1-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
|
||||
RUN ln -s /opt/bitnami/common/lib/engines-1.1/* /usr/lib/x86_64-linux-gnu/engines-1.1/
|
||||
|
||||
ENV APP_VERSION="2.6.0" \
|
||||
BITNAMI_APP_NAME="haproxy-intel" \
|
||||
PATH="/opt/bitnami/haproxy-dataplaneapi/bin:/opt/bitnami/haproxy/sbin:$PATH"
|
||||
|
||||
USER 1001
|
||||
ENTRYPOINT [ "/opt/bitnami/haproxy/sbin/haproxy" ]
|
||||
CMD [ "-f", "/bitnami/haproxy/conf/haproxy.cfg" ]
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
version: '2'
|
||||
services:
|
||||
haproxy:
|
||||
image: docker.io/bitnami/haproxy-intel:2
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"haproxy": {
|
||||
"arch": "amd64",
|
||||
"digest": "5c3ca28ed9dc4bc8e7cc5ce1fac3a34f8c26bd105ccb564c7cb071efcaf7d771",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "2.6.0-1"
|
||||
},
|
||||
"haproxy-dataplaneapi": {
|
||||
"arch": "amd64",
|
||||
"digest": "8ebb129789299b720e34ef1d5713f56068e2202e7b0cccc33f8612c6734bc88c",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "2.5.3-0"
|
||||
},
|
||||
"qatengine": {
|
||||
"arch": "amd64",
|
||||
"digest": "57098cc24a490e290afc0ebe3059f3b73a16bfeef1ee684ada940a9b63cd44e3",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "0.6.12-0"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
Bitnami containers ship with software bundles. You can find the licenses under:
|
||||
/opt/bitnami/nami/COPYING
|
||||
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
set -u
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
n=0
|
||||
max=2
|
||||
until [ $n -gt $max ]; do
|
||||
set +e
|
||||
(
|
||||
apt-get update -qq &&
|
||||
apt-get install -y --no-install-recommends "$@"
|
||||
)
|
||||
CODE=$?
|
||||
set -e
|
||||
if [ $CODE -eq 0 ]; then
|
||||
break
|
||||
fi
|
||||
if [ $n -eq $max ]; then
|
||||
exit $CODE
|
||||
fi
|
||||
echo "apt failed, retrying"
|
||||
n=$(($n + 1))
|
||||
done
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
|
|
@ -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-10`, `2.6.0`, `2.6.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-haproxy-intel/blob/2.6.0-debian-10-r5/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-11`, `2.6.0`, `2.6.0-debian-11-r0`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-haproxy-intel/blob/2.6.0-debian-11-r0/2/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/haproxy-intel GitHub repo](https://github.com/bitnami/bitnami-docker-haproxy-intel).
|
||||
|
||||
|
|
@ -56,7 +56,7 @@ $ docker pull bitnami/haproxy-intel:[TAG]
|
|||
If you wish, you can also build the image yourself.
|
||||
|
||||
```console
|
||||
$ docker build -t bitnami/haproxy-intel:latest 'https://github.com/bitnami/bitnami-docker-haproxy-intel.git#master:2/debian-10'
|
||||
$ docker build -t bitnami/haproxy-intel:latest 'https://github.com/bitnami/bitnami-docker-haproxy-intel.git#master:2/debian-11'
|
||||
```
|
||||
|
||||
## Why use a non-root container?
|
||||
|
|
|
|||
Loading…
Reference in New Issue