[bitnami/cypress] Release 15.9.0-debian-12-r0 (#89688)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2026-01-14 05:54:45 +01:00
committed by GitHub
parent 55c6f825d0
commit 6e5bd566f8
2 changed files with 7 additions and 7 deletions

View File

@@ -7,13 +7,13 @@ 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="2026-01-11T08:54:39Z" \
org.opencontainers.image.created="2026-01-14T04:36:18Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/cypress/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/cypress" \
org.opencontainers.image.title="cypress" \
org.opencontainers.image.vendor="Broadcom, Inc." \
org.opencontainers.image.version="15.8.2"
org.opencontainers.image.version="15.9.0"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@@ -29,8 +29,8 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \
mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
COMPONENTS=( \
"python-3.14.2-2-linux-${OS_ARCH}-debian-12" \
"node-24.12.0-1-linux-${OS_ARCH}-debian-12" \
"cypress-15.8.2-0-linux-${OS_ARCH}-debian-12" \
"node-24.13.0-0-linux-${OS_ARCH}-debian-12" \
"cypress-15.9.0-0-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@@ -49,10 +49,10 @@ RUN mkdir /.local && chmod g+rwX /.local
RUN uninstall_packages curl
RUN mkdir /app && chmod g+rwX -R /app /opt/bitnami/node/cypress-cache && ln -s /app /e2e && mkdir -p /usr/local/lib /usr/local/bin && ln -s /opt/bitnami/node/node_modules /usr/local/lib/node_modules && ln -s /usr/local/lib/node_modules/cypress/bin/cypress /usr/local/bin/cypress && mkdir -p /.pki /.local /.config /.cache /.fontconfig && chmod g+rwX -R /.pki /.local /.cache /.config /.fontconfig
ENV APP_VERSION="15.8.2" \
ENV APP_VERSION="15.9.0" \
BITNAMI_APP_NAME="cypress" \
CYPRESS_CACHE_FOLDER="/opt/bitnami/node/cypress-cache" \
IMAGE_REVISION="1" \
IMAGE_REVISION="0" \
PATH="/opt/bitnami/python/bin:/opt/bitnami/node/bin:/opt/bitnami/node/lib/node_modules/cypress/bin:$PATH"
EXPOSE 3000

View File

@@ -109,7 +109,7 @@ parse_uri() {
# Solution based on https://tools.ietf.org/html/rfc3986#appendix-B with
# additional sub-expressions to split authority into userinfo, host and port
# Credits to Patryk Obara (see https://stackoverflow.com/a/45977232/6694969)
local -r URI_REGEX='^(([^:/?#]+):)?(//((([^@/?#]+)@)?([^:/?#]+)(:([0-9]+))?))?(/([^?#]*))?(\?([^#]*))?(#(.*))?'
local -r URI_REGEX='^(([^:/?#]+):)?(//((([^@/?#]+)@)?([^:/?#]+|\[[0-9a-fA-F:.]+\])(:([0-9]+))?))?(/([^?#]*))?(\?([^#]*))?(#(.*))?'
# || | ||| | | | | | | | | |
# |2 scheme | ||6 userinfo 7 host | 9 port | 11 rpath | 13 query | 15 fragment
# 1 scheme: | |5 userinfo@ 8 :... 10 path 12 ?... 14 #...