Skip to content

Commit 1da5a56

Browse files
authored
Bump version to 1.8.3 (#60)
Fixes #58
2 parents 2b75f80 + a51bee0 commit 1da5a56

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
env:
10-
POETRY_VERSION: 1.8.2
10+
POETRY_VERSION: 1.8.3
1111
GHCR_IMAGE_REPOSITORY: ghcr.io/${{ github.repository_owner }}/poetry
1212
PLATFORMS: linux/amd64,linux/arm64/v8
1313

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [published]
66

77
env:
8-
POETRY_VERSION: 1.8.2
8+
POETRY_VERSION: 1.8.3
99
GHCR_IMAGE_REPOSITORY: ghcr.io/${{ github.repository_owner }}/poetry
1010

1111
jobs:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ARG PIP_VERSION=22.2.2
99
ARG SETUPTOOLS_VERSION=65.3.0
1010
RUN pip install --upgrade pip==${PIP_VERSION} setuptools==${SETUPTOOLS_VERSION}
1111

12-
ARG POETRY_VERSION=1.8.2
12+
ARG POETRY_VERSION=1.8.3
1313
ENV POETRY_HOME=/opt/poetry\
1414
PATH="${PATH}:/opt/poetry/bin"
1515
RUN python3 -m venv ${POETRY_HOME} &&\

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
![Poetry](https://img.shields.io/badge/Poetry-1.8.2-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
5+
![Poetry](https://img.shields.io/badge/Poetry-1.8.3-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
66
)
77

88
## Why
@@ -25,17 +25,17 @@ This will use the default Python version (latest) and image variant (Bookworm).
2525

2626
### Examples
2727

28-
- Poetry 1.8.2: `ghcr.io/withlogicco/poetry:1.8.2`
29-
- Poetry 1.8.2 on Python 3.12: `ghcr.io/withlogicco/poetry:1.8.2-python-3.12`
30-
- Poetry 1.8.2 on Bookworm: `ghcr.io/withlogicco/poetry:1.8.2-bookworm`
31-
- Poetry 1.8.2 on Python 3.12 and Bookworm: `ghcr.io/withlogicco/poetry:1.8.2-python-3.12-bookworm`
28+
- Poetry 1.8.3: `ghcr.io/withlogicco/poetry:1.8.3`
29+
- Poetry 1.8.3 on Python 3.12: `ghcr.io/withlogicco/poetry:1.8.3-python-3.12`
30+
- Poetry 1.8.3 on Bookworm: `ghcr.io/withlogicco/poetry:1.8.3-bookworm`
31+
- Poetry 1.8.3 on Python 3.12 and Bookworm: `ghcr.io/withlogicco/poetry:1.8.3-python-3.12-bookworm`
3232

3333
## Usage
3434

3535
First, pick the image tag you wish to use. Then, copy your `pyproject.toml` and `poetry.lock` files in the working directory (`/usr/src/app`), for optimal caching and run `poetry install`. Example:
3636

3737
```dockerfile
38-
FROM ghcr.io/withlogicco/poetry:1.8.2
38+
FROM ghcr.io/withlogicco/poetry:1.8.3
3939

4040
COPY pyproject.toml poetry.lock ./
4141
RUN poetry install

0 commit comments

Comments
 (0)