[bitnami/node] Release 24.9.0-debian-12-r0 (#86370)
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
parent
43154467a7
commit
a5240d28dd
|
|
@ -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="2025-09-24T06:19:28Z" \
|
||||
org.opencontainers.image.created="2025-09-26T12:25:06Z" \
|
||||
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
||||
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/node/README.md" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/node" \
|
||||
org.opencontainers.image.title="node" \
|
||||
org.opencontainers.image.vendor="Broadcom, Inc." \
|
||||
org.opencontainers.image.version="24.8.0"
|
||||
org.opencontainers.image.version="24.9.0"
|
||||
|
||||
ENV OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
OS_FLAVOUR="debian-12" \
|
||||
|
|
@ -28,7 +28,7 @@ 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.13.7-2-linux-${OS_ARCH}-debian-12" \
|
||||
"node-24.8.0-1-linux-${OS_ARCH}-debian-12" \
|
||||
"node-24.9.0-0-linux-${OS_ARCH}-debian-12" \
|
||||
) ; \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
|
|
@ -49,9 +49,9 @@ RUN sed -i 's/^PASS_MAX_DAYS.*/PASS_MAX_DAYS 90/' /etc/login.defs && \
|
|||
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/node/postunpack.sh
|
||||
ENV APP_VERSION="24.8.0" \
|
||||
ENV APP_VERSION="24.9.0" \
|
||||
BITNAMI_APP_NAME="node" \
|
||||
IMAGE_REVISION="2" \
|
||||
IMAGE_REVISION="0" \
|
||||
PATH="/opt/bitnami/python/bin:/opt/bitnami/node/bin:$PATH"
|
||||
|
||||
EXPOSE 3000
|
||||
|
|
|
|||
|
|
@ -113,6 +113,12 @@ node:
|
|||
- [package.json documentation](https://docs.npmjs.com/files/package.json)
|
||||
- [npm start script](https://docs.npmjs.com/misc/scripts#default-values)
|
||||
|
||||
### FIPS configuration in Bitnami Secure Images
|
||||
|
||||
The Bitnami Node.js Docker image from the [Bitnami Secure Images](https://www.arrow.com/globalecs/uk/products/bitnami-secure-images/) catalog includes extra features and settings to configure the container with FIPS capabilities. You can configure the next environment variables:
|
||||
|
||||
- `OPENSSL_FIPS`: whether OpenSSL runs in FIPS mode or not. `yes` (default), `no`.
|
||||
|
||||
## Working with private npm modules
|
||||
|
||||
To work with npm private modules, it is necessary to be logged into npm. npm CLI uses *auth tokens* for authentication. Check the official [npm documentation](https://www.npmjs.com/package/get-npm-token) for further information about how to obtain the token.
|
||||
|
|
|
|||
Loading…
Reference in New Issue