[bitnami/nginx] Release 1.29.3-debian-12-r4 (#88927)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot 2025-12-09 17:36:21 +01:00 committed by GitHub
parent 03779782e6
commit e6e0eb4d2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 5 deletions

View File

@ -7,7 +7,7 @@ ARG DOWNLOADS_URL="downloads.bitnami.com/files/stacksmith"
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2025-12-02T11:03:13Z" \
org.opencontainers.image.created="2025-12-09T16:18:18Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/nginx/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/nginx" \
@ -28,8 +28,7 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \
DOWNLOADS_URL=${SECRET_DOWNLOADS_URL:-${DOWNLOADS_URL}} ; \
mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
COMPONENTS=( \
"render-template-1.0.9-159-linux-${OS_ARCH}-debian-12" \
"nginx-agent-3.5.1-0-linux-${OS_ARCH}-debian-12" \
"render-template-1.0.9-160-linux-${OS_ARCH}-debian-12" \
"nginx-1.29.3-2-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
@ -53,10 +52,10 @@ COPY rootfs /
RUN /opt/bitnami/scripts/nginx/postunpack.sh
ENV APP_VERSION="1.29.3" \
BITNAMI_APP_NAME="nginx" \
IMAGE_REVISION="3" \
IMAGE_REVISION="4" \
NGINX_HTTPS_PORT_NUMBER="" \
NGINX_HTTP_PORT_NUMBER="" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/nginx-agent/bin:/opt/bitnami/nginx/sbin:$PATH"
PATH="/opt/bitnami/common/bin:/opt/bitnami/nginx/sbin:$PATH"
EXPOSE 8080 8443

View File

@ -93,3 +93,15 @@ touch /.rnd && chmod g+rw /.rnd
# (this is to avoid breaking when entrypoint is being overridden)
cp -r "${NGINX_CONF_DIR}"/* "$NGINX_DEFAULT_CONF_DIR"
# Create symlinks to the standard Nginx directories and binary
ln -sf /opt/bitnami/nginx/conf /etc/nginx
ensure_dir_exists /usr/share/nginx
ln -sf /app /usr/share/nginx/html
ln -sf /opt/bitnami/nginx/logs /var/log/nginx
ln -sf /opt/bitnami/nginx/tmp /var/run/nginx
ensure_dir_exists /opt/bitnami/nginx/tmp/cache
ln -sf /opt/bitnami/nginx/tmp/cache /var/cache/nginx
ensure_dir_exists /usr/sbin
ln -sf /opt/bitnami/nginx/sbin/nginx /usr/sbin/nginx
ensure_dir_exists /usr/lib/nginx
ln -sf /opt/bitnami/nginx/modules /usr/lib/nginx/modules