Ubuntu with Python 3.12, 2.7.18 and uv pre-installed.
10K+
Docker image based on Ubuntu 24.04 (Noble Numbat) with Python 3.12.13 and 2.7.18
pre-installed, plus uv.
For the full list of supported tags, click here.
| Container image registry | amd64 | arm64 |
|---|---|---|
| Docker Hub | ✅ | ✅ |
| Quay.io | ✅ | ✅ |
The examples below will demonstrate how to use this image in Azure Pipelines, and GitHub Workflows.
Note
`pip` caching is disabled by default. See:
jobs:
- job: tox
pool:
vmImage: ubuntu-latest
container: coatldev/six:latest # or quay.io/coatldev/six:latest
steps:
- script: |
sudo chown -R $(whoami):$(id -ng) "${PYTHON_ROOT}"
displayName: Change owner
- script: |
uv python install 3.14
displayName: Install Python with uv
- script: |
uvx tox
displayName: Run tests
jobs:
tox:
runs-on: ubuntu-latest
container: coatldev/six:latest # or quay.io/coatldev/six:latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Python with uv
run: |
uv python install 3.14
- name: Run tests
run: |
uvx tox
Content type
Image
Digest
sha256:bfff55428…
Size
278.6 MB
Last updated
1 day ago
docker pull coatldev/six:3.12