[bitnami/jax] Release 0.9.2-debian-12-r0 (#91716)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot 2026-03-19 06:06:49 +01:00 committed by GitHub
parent acb908ffea
commit 6436cf6107
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 18 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-03-02T15:35:03Z" \
org.opencontainers.image.created="2026-03-19T03:58:42Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/jax/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/jax" \
org.opencontainers.image.title="jax" \
org.opencontainers.image.vendor="Broadcom, Inc." \
org.opencontainers.image.version="0.9.1"
org.opencontainers.image.version="0.9.2"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@ -28,8 +28,8 @@ 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=( \
"python-3.12.12-23-linux-${OS_ARCH}-debian-12" \
"jax-0.9.1-0-linux-${OS_ARCH}-debian-12" \
"python-3.12.13-2-linux-${OS_ARCH}-debian-12" \
"jax-0.9.2-0-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@ -48,7 +48,7 @@ RUN mkdir /.local && chmod g+rwX /.local
RUN uninstall_packages curl
RUN mkdir /app && chmod g+rwX /app
ENV APP_VERSION="0.9.1" \
ENV APP_VERSION="0.9.2" \
BITNAMI_APP_NAME="jax" \
IMAGE_REVISION="0" \
PATH="/opt/bitnami/python/bin:$PATH"

View File

@ -5,13 +5,13 @@
[Overview of JAX](https://jax.readthedocs.io)
Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
## <a id="tl-dr"></a> TL;DR
## TL;DR
```console
docker run -it --name jax bitnami/jax
```
## <a id="why-use-bitnami-secure-images"></a> Why use Bitnami Secure Images?
## Why use Bitnami Secure Images?
Those are hardened, minimal CVE images built and maintained by Bitnami. Bitnami Secure Images are based on the cloud-optimized, security-hardened enterprise [OS Photon Linux](https://vmware.github.io/photon/). Why choose BSI images?
@ -28,15 +28,15 @@ Each image comes with valuable security metadata. You can view the metadata in [
If you are looking for our previous generation of images based on Debian Linux, please see the [Bitnami Legacy registry](https://hub.docker.com/u/bitnamilegacy).
## <a id="why-non-root"></a> Why use a non-root container?
## Why use a non-root container?
Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://techdocs.broadcom.com/us/en/vmware-tanzu/application-catalog/tanzu-application-catalog/services/tac-doc/apps-tutorials-work-with-non-root-containers-index.html).
## <a id="supported-tags"></a> Supported tags and respective `Dockerfile` links
## Supported tags and respective `Dockerfile` links
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://techdocs.broadcom.com/us/en/vmware-tanzu/application-catalog/tanzu-application-catalog/services/tac-doc/apps-tutorials-understand-rolling-tags-containers-index.html).
## <a id="get-this-image"></a> Get this image
## Get this image
The recommended way to get the Bitnami Jax Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/jax).
@ -58,7 +58,7 @@ cd bitnami/APP/VERSION/OPERATING-SYSTEM
docker build -t bitnami/APP:latest .
```
## <a id="entering-the-repl"></a> Entering the REPL
## Entering the REPL
By default, running this image will drop you into the Python REPL, where you can interactively test and try things out with JAX in Python.
@ -66,11 +66,11 @@ By default, running this image will drop you into the Python REPL, where you can
docker run -it --name jax bitnami/jax
```
## <a id="configuration"></a> Configuration
## Configuration
The following section describes how to run commands
### <a id="running-your-app"></a> Running your JAX app
### Running your JAX app
The default work directory for the JAX image is `/app`. You can mount a folder from your host here that includes your JAX script, and run it normally using the `python` command.
@ -79,7 +79,7 @@ docker run -it --name jax -v /path/to/app:/app bitnami/jax \
python script.py
```
### <a id="running-a-app-with-package-dependencies"></a> Running a JAX app with package dependencies
### Running a JAX app with package dependencies
If your JAX app has a `requirements.txt` defining your app's dependencies, you can install the dependencies before running your app.
@ -92,19 +92,19 @@ docker run -it --name jax -v /path/to/app:/app bitnami/jax \
- [jax documentation](https://jax.readthedocs.iodocs/)
### <a id="fips-configuration"></a> FIPS configuration in Bitnami Secure Images
### FIPS configuration in Bitnami Secure Images
The Bitnami JAX Docker image from the [Bitnami Secure Images](https://go-vmware.broadcom.com/contact-us) 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`.
## <a id="notable-changes"></a> Notable Changes
## Notable Changes
### <a id="starting-january-16-2024"></a> Starting January 16, 2024
### Starting January 16, 2024
- The `docker-compose.yaml` file has been removed, as it was solely intended for internal testing purposes.
## <a id="license"></a> License
## License
Copyright &copy; 2026 Broadcom. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.