From c9ea173b8c7370c839ca2effa4e6deeaa9f3bbac Mon Sep 17 00:00:00 2001 From: Laurent Sorber Date: Sun, 21 Apr 2024 14:17:09 +0000 Subject: [PATCH] chore: upgrade to Poetry v1.8.0 --- {{ cookiecutter.__project_name_kebab_case }}/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{ cookiecutter.__project_name_kebab_case }}/Dockerfile b/{{ cookiecutter.__project_name_kebab_case }}/Dockerfile index 3bfb51a8..3ba3ea85 100644 --- a/{{ cookiecutter.__project_name_kebab_case }}/Dockerfile +++ b/{{ cookiecutter.__project_name_kebab_case }}/Dockerfile @@ -37,7 +37,7 @@ FROM base as poetry USER root # Install Poetry in separate venv so it doesn't pollute the main venv. -ENV POETRY_VERSION 1.6.1 +ENV POETRY_VERSION 1.8.0 ENV POETRY_VIRTUAL_ENV /opt/poetry-env RUN --mount=type=cache,target=/root/.cache/pip/ \ python -m venv $POETRY_VIRTUAL_ENV && \