Skip to content

Commit

Permalink
Fix: Replace buster with bookworm (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
parisk committed Dec 4, 2023
2 parents 037bc15 + c4f6862 commit 1ca8a33
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
- "3.11"
- "3.12"
variant:
- buster
- bookworm
- slim
include:
- python: "3.12"
is_default_python: true
- variant: buster
- variant: bookworm
is_default_variant: true
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PYTHON_VERSION=3.12
ARG VARIANT=buster
ARG VARIANT=bookworm

FROM python:${PYTHON_VERSION}-${VARIANT}

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

Docker Poetry is a Docker image for Python projects with dependencies managed by Poetry.

![Poetry](https://img.shields.io/badge/Poetry-1.7.0-purple) ![Python](https://img.shields.io/badge/Python-3.12%20(default)%20%7C%203.11%20%7C%203.10%20%7C%203.9%20%7C%203.8-blue) ![Variants](https://img.shields.io/badge/Variants-Buster%20(default)%20%7C%20Slim-orange
![Poetry](https://img.shields.io/badge/Poetry-1.7.0-purple) ![Python](https://img.shields.io/badge/Python-3.12%20(default)%20%7C%203.11%20%7C%203.10%20%7C%203.9%20%7C%203.8-blue) ![Variants](https://img.shields.io/badge/Variants-Bookworm%20(default)%20%7C%20Slim-orange
)

## Why
Expand All @@ -17,7 +17,7 @@ For the simplest use case just pick your Poetry version:
ghcr.io/withlogicco/poetry:<poetry_version>
```

This will use the default Python version (latest) and image variant (Buster). You can be more specific by picking either a Python version, image variant or both:
This will use the default Python version (latest) and image variant (Bookworm). You can be more specific by picking either a Python version, image variant or both:

- Python version: `ghcr.io/withlogicco/poetry:<poetry_version>-python-<python_version>`
- Image variant: `ghcr.io/withlogicco/poetry:<poetry_version>-<image_variant>`
Expand All @@ -27,8 +27,8 @@ This will use the default Python version (latest) and image variant (Buster). Yo

- Poetry 1.7.0: `ghcr.io/withlogicco/poetry:1.7.0`
- Poetry 1.7.0 on Python 3.12: `ghcr.io/withlogicco/poetry:1.7.0-python-3.12`
- Poetry 1.7.0 on Buster: `ghcr.io/withlogicco/poetry:1.7.0-buster`
- Poetry 1.7.0 on Python 3.12 and Buster: `ghcr.io/withlogicco/poetry:1.7.0-python-3.12-buster`
- Poetry 1.7.0 on Bookworm: `ghcr.io/withlogicco/poetry:1.7.0-bookworm`
- Poetry 1.7.0 on Python 3.12 and Bookworm: `ghcr.io/withlogicco/poetry:1.7.0-python-3.12-bookworm`

## Usage

Expand Down Expand Up @@ -59,7 +59,7 @@ You can check the currently supported Python versions at https://endoflife.date/

We provide builds for three different image variants:

- Debian Buster (default): `buster`
- Debian Bookworm (default): `bookworm`
- Debian Slim: `slim`

## License
Expand Down

0 comments on commit 1ca8a33

Please sign in to comment.