Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
variant:
- bookworm
- trixie
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
variant:
- bookworm
- trixie
include:
- python: "3.13"
- python: "3.14"
is_default_python: true
- variant: trixie
is_default_variant: true
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG UV_VERSION=0.8.14
ARG PYTHON_VERSION=3.13
ARG PYTHON_VERSION=3.14
ARG VARIANT=bookworm
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

An opinionated base Docker image used when doing [Python with LOGIC](https://withlogic.co/ref/python). Optimized for development, CI and production.

![uv](https://img.shields.io/badge/uv-0.8.14-lime) ![python](https://img.shields.io/badge/Python-3.13%20(default)%2C3.12%2C3.11%2C3.10-blue) ![variants](https://img.shields.io/badge/Variant-trixie%20(default)%2C%20bookworm-purple?label=Variants)
![uv](https://img.shields.io/badge/uv-0.8.14-lime) ![python](https://img.shields.io/badge/Python-3.14%20(default)%2C3.13%2C3.12%2C3.11%2C3.10-blue) ![variants](https://img.shields.io/badge/Variant-trixie%20(default)%2C%20bookworm-purple?label=Variants)

> [!TIP]
>
Expand Down Expand Up @@ -53,10 +53,10 @@ There are tags available to choose a specific supported Python versions and imag

### Examples

- Python 3.13 on Trixie: `ghcr.io/withlogicco/python`
- Poetry 3.13 on Bookworm: `ghcr.io/withlogicco/python:bookworm`
- Poetry 3.12 on Trixie: `ghcr.io/withlogicco/python:3.12`
- Poetry 3.12 on Bookworm: `ghcr.io/withlogicco/python:3.12-bookworm`
- Python 3.14 on Trixie: `ghcr.io/withlogicco/python`
- Python 3.14 on Bookworm: `ghcr.io/withlogicco/python:bookworm`
- Python 3.13 on Trixie: `ghcr.io/withlogicco/python:3.13`
- Python 3.13 on Bookworm: `ghcr.io/withlogicco/python:3.13-bookworm`

## Advanced usage

Expand Down