mirror of
https://github.com/bitnami/containers.git
synced 2026-03-16 06:49:12 +08:00
[bitnami/nginx-intel] Release 0.4.8-debian-11-r4 (#9276)
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" \
|
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||||
org.opencontainers.image.ref.name="0.4.8-debian-11-r3" \
|
org.opencontainers.image.ref.name="0.4.8-debian-11-r4" \
|
||||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/nginx-intel" \
|
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/nginx-intel" \
|
||||||
org.opencontainers.image.title="nginx-intel" \
|
org.opencontainers.image.title="nginx-intel" \
|
||||||
org.opencontainers.image.vendor="VMware, Inc." \
|
org.opencontainers.image.vendor="VMware, Inc." \
|
||||||
@@ -20,37 +20,21 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|||||||
# Install required system packages and dependencies
|
# Install required system packages and dependencies
|
||||||
RUN install_packages ca-certificates curl libcrypt1 libgeoip1 libpcre3 libssl1.1 procps zlib1g
|
RUN install_packages ca-certificates curl libcrypt1 libgeoip1 libpcre3 libssl1.1 procps zlib1g
|
||||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
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 \
|
COMPONENTS=( \
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/qatengine-0.6.15-1-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
"qatengine-0.6.15-2-linux-${OS_ARCH}-debian-11" \
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/qatengine-0.6.15-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
"render-template-1.0.3-154-linux-${OS_ARCH}-debian-11" \
|
||||||
fi && \
|
"nginx-intel-0.4.8-2-linux-${OS_ARCH}-debian-11" \
|
||||||
sha256sum -c qatengine-0.6.15-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
"gosu-1.14.0-155-linux-${OS_ARCH}-debian-11" \
|
||||||
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
|
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||||
if [ ! -f render-template-1.0.3-153-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/render-template-1.0.3-153-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/render-template-1.0.3-153-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
fi && \
|
||||||
fi && \
|
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
|
||||||
sha256sum -c render-template-1.0.3-153-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||||
tar -zxf render-template-1.0.3-153-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
rm -rf "${COMPONENT}.tar.gz{,sha256}" ; \
|
||||||
rm -rf render-template-1.0.3-153-linux-${OS_ARCH}-debian-11.tar.gz render-template-1.0.3-153-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
done
|
||||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
|
||||||
if [ ! -f nginx-intel-0.4.8-1-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/nginx-intel-0.4.8-1-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/nginx-intel-0.4.8-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
|
||||||
fi && \
|
|
||||||
sha256sum -c nginx-intel-0.4.8-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
|
||||||
tar -zxf nginx-intel-0.4.8-1-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
|
||||||
rm -rf nginx-intel-0.4.8-1-linux-${OS_ARCH}-debian-11.tar.gz nginx-intel-0.4.8-1-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
|
||||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
|
||||||
if [ ! -f gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
|
||||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
|
||||||
fi && \
|
|
||||||
sha256sum -c gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
|
||||||
tar -zxf gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
|
||||||
rm -rf gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
|
||||||
RUN apt-get autoremove --purge -y curl && \
|
RUN apt-get autoremove --purge -y curl && \
|
||||||
apt-get update && apt-get upgrade -y && \
|
apt-get update && apt-get upgrade -y && \
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
||||||
|
|||||||
@@ -1,30 +1,30 @@
|
|||||||
{
|
{
|
||||||
"gosu": {
|
"gosu": {
|
||||||
"arch": "amd64",
|
"arch": "amd64",
|
||||||
"digest": "e36c3d90f4fbfbe989f40947fa7c8ab817f12fcf97d3aef893c753a20ce976ab",
|
"digest": "f21869b27c26b9c3053bce8b419a0fdf1dc45fcf13a7c2058e0afb6996d3687f",
|
||||||
"distro": "debian-11",
|
"distro": "debian-11",
|
||||||
"type": "NAMI",
|
"type": "NAMI",
|
||||||
"version": "1.14.0-154"
|
"version": "1.14.0-155"
|
||||||
},
|
},
|
||||||
"nginx-intel": {
|
"nginx-intel": {
|
||||||
"arch": "amd64",
|
"arch": "amd64",
|
||||||
"digest": "7e86abdc72e32d00edcbc5d78ee61b50f60d3763c4762d054f09449713f3ad6f",
|
"digest": "3c4dae138cba0fe01832db0d55c2b29fb1cf9f8cf1d4b16c450f82a8dbb02ee8",
|
||||||
"distro": "debian-11",
|
"distro": "debian-11",
|
||||||
"type": "NAMI",
|
"type": "NAMI",
|
||||||
"version": "0.4.8-1"
|
"version": "0.4.8-2"
|
||||||
},
|
},
|
||||||
"qatengine": {
|
"qatengine": {
|
||||||
"arch": "amd64",
|
"arch": "amd64",
|
||||||
"digest": "ef497fc4f1ec8fd3ace5df76edd510bf6b96838c429a7047e94048741f52d923",
|
"digest": "985c22e620e69d44646dd8da7739d18ff4dc225aac7bf5a25f41a8aa91b1575c",
|
||||||
"distro": "debian-11",
|
"distro": "debian-11",
|
||||||
"type": "NAMI",
|
"type": "NAMI",
|
||||||
"version": "0.6.15-1"
|
"version": "0.6.15-2"
|
||||||
},
|
},
|
||||||
"render-template": {
|
"render-template": {
|
||||||
"arch": "amd64",
|
"arch": "amd64",
|
||||||
"digest": "c1f2cdabdcc920512e8936ab2c8a033e1aeb97801fa026f0b12432581bf849ae",
|
"digest": "cb0a32f121f58797a77247fe41ae2b9f9b705bdf170f55015963c667edca6360",
|
||||||
"distro": "debian-11",
|
"distro": "debian-11",
|
||||||
"type": "NAMI",
|
"type": "NAMI",
|
||||||
"version": "1.0.3-153"
|
"version": "1.0.3-154"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -53,7 +53,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/).
|
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.4.8`, `0.4.8-debian-11-r3`, `latest` (0/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/nginx-intel/0/debian-11/Dockerfile)
|
* [`0`, `0-debian-11`, `0.4.8`, `0.4.8-debian-11-r4`, `latest` (0/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/nginx-intel/0/debian-11/Dockerfile)
|
||||||
|
|
||||||
## Get this image
|
## Get this image
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user