Multi-arch (amd64/arm64) Docker images for all Security Support Python versions.
| Version | Latest Patch | EOL Date | Image |
|---|---|---|---|
| latest → 3.14 | 3.14.5 | 2030-10-31 | docker.cnb.cool/examples/language/python-3:latest |
| 3.13 | 3.13.13 | 2029-10-31 | docker.cnb.cool/examples/language/python-3:3.13 |
| 3.12 | 3.12.13 | 2028-10-31 | docker.cnb.cool/examples/language/python-3:3.12 |
| 3.11 | 3.11.15 | 2027-10-31 | docker.cnb.cool/examples/language/python-3:3.11 |
| 3.10 | 3.10.20 | 2026-10-31 | docker.cnb.cool/examples/language/python-3:3.10 |
$:
vscode:
- docker:
image: docker.cnb.cool/examples/language/python-3:3.14
services:
- vscode
- docker
stages:
- name: ls
script: ls -al
This image ships with uv, a blazing-fast Python package manager written in Rust. UV_SYSTEM_PYTHON=1 is pre-configured, so uv shares the same system Python environment with pip.
# Recommended: use uv for faster installs with global cache and parallel downloads
uv pip install kaggle
# Or continue using pip as usual
pip install kaggle
Tip: Stick with
uv pip installfor all dependency management to avoid lock file and resolution inconsistencies.