diff --git a/bitnami/python/3.14/debian-12/Dockerfile b/bitnami/python/3.14/debian-12/Dockerfile
index c1b30e1e01d6..7f9adfa02015 100644
--- a/bitnami/python/3.14/debian-12/Dockerfile
+++ b/bitnami/python/3.14/debian-12/Dockerfile
@@ -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="2026-02-25T21:28:00Z" \
+ org.opencontainers.image.created="2026-02-26T14:54:09Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/python/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/python" \
@@ -27,7 +27,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=( \
- "python-3.14.3-6-linux-${OS_ARCH}-debian-12" \
+ "python-3.14.3-7-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@@ -47,7 +47,7 @@ RUN sed -i 's/^PASS_MAX_DAYS.*/PASS_MAX_DAYS 90/' /etc/login.defs && \
ENV APP_VERSION="3.14.3" \
BITNAMI_APP_NAME="python" \
- IMAGE_REVISION="7" \
+ IMAGE_REVISION="8" \
PATH="/opt/bitnami/python/bin:$PATH"
EXPOSE 8000
diff --git a/bitnami/python/README.md b/bitnami/python/README.md
index bc0c374a3ffe..597a86bde560 100644
--- a/bitnami/python/README.md
+++ b/bitnami/python/README.md
@@ -1,19 +1,17 @@
# Bitnami Secure Image for Python
-## What is Python?
-
> Python is a programming language that lets you work quickly and integrate systems more effectively.
[Overview of Python](https://www.python.org/)
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.
-## TL;DR
+## TL;DR
```console
docker run -it --name python bitnami/python
```
-## 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?
@@ -30,11 +28,11 @@ 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).
-## Choosing between the _Standard_ and _Minimal_ image
+## Choosing between the _Standard_ and _Minimal_ image
This asset is available in two flavors: _Standard_ and _Minimal_; designed to address different use cases and operational needs.
-### Standard images
+### Standard images
The standard images are full-featured, production-ready containers built on top of secure base operating systems. They include:
@@ -48,7 +46,7 @@ Recommended for:
- Workloads requiring package installation or debugging tools.
- Applications that depend on system utilities or shared libraries.
-### Minimal images
+### Minimal images
The minimal images are optimized, distroless-style containers derived from a stripped-down base. They only ship what’s strictly necessary to run the application; no shell, package manager, or extra libraries. They provide:
@@ -62,15 +60,15 @@ Recommended for:
- Regulated or security-sensitive workloads
- Containers built via multi-stage builds (e.g., Golang static binaries).
-## 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).
-### Deprecation Note (2022-01-21)
+### Deprecation Note (2022-01-21)
The `prod` tags has been removed; from now on just the regular container images will be released.
-### Deprecation Note (2020-08-18)
+### Deprecation Note (2020-08-18)
The formatting convention for `prod` tags has been changed:
@@ -78,7 +76,7 @@ The formatting convention for `prod` tags has been changed:
- `VERSION-debian-10-rX-prod` is now tagged as `VERSION-prod-debian-10-rX`
- `latest-prod` is now deprecated
-## Get this image
+## Get this image
The recommended way to get the Bitnami Python Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/python).
@@ -100,11 +98,11 @@ cd bitnami/APP/VERSION/OPERATING-SYSTEM
docker build -t bitnami/APP:latest .
```
-## Using `docker-compose.yaml`
+## Using `docker-compose.yaml`
Please be aware this file has not undergone internal testing. Consequently, we advise its use exclusively for development or testing purposes.
-## 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 in Python.
@@ -112,9 +110,11 @@ By default, running this image will drop you into the Python REPL, where you can
docker run -it --name python bitnami/python
```
-## Configuration
+## Configuration
-### Running your Python script
+The following section describes how to run commands
+
+### Running your Python script
The default work directory for the Python image is `/app`. You can mount a folder from your host here that includes your Python script, and run it normally using the `python` command.
@@ -123,7 +123,7 @@ docker run -it --name python -v /path/to/app:/app bitnami/python \
python script.py
```
-### Running a Python app with package dependencies
+### Running a Python app with package dependencies
If your Python app has a `requirements.txt` defining your app's dependencies, you can install the dependencies before running your app.
@@ -147,13 +147,13 @@ python:
- [python documentation](https://www.python.org/doc/)
- [pip documentation](https://pip.pypa.io/en/stable/)
-### FIPS configuration in Bitnami Secure Images
+### FIPS configuration in Bitnami Secure Images
The Bitnami Python 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`.
-## License
+## License
Copyright © 2026 Broadcom. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.