Docker image based on Ubuntu 24.04 (Noble Numbat) with Python 3.12.12 and 2.7.18
pre-installed, plus uv.
For the full list of supported tags, see:
| 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: actions/runner#652
jobs:
- job: tox
pool:
vmImage: ubuntu-latest
container:
image: coatldev/six:latest # or quay.io/coatldev/six:latest
env:
UV_PYTHON: '3.14'
steps:
- script: |
sudo chown -R $(whoami):$(id -ng) "${PYTHON_ROOT}"
displayName: Change owner
- script: |
uvx tox
displayName: Run testsjobs:
tox:
runs-on: ubuntu-latest
container:
image: coatldev/six:latest # or quay.io/coatldev/six:latest
env:
UV_PYTHON: '3.14'
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Run tests
run: |
uvx tox