From 707e568605cba21d93040a099b077627d92b0532 Mon Sep 17 00:00:00 2001 From: Pavel Kirilin <win10@list.ru> Date: Tue, 24 Jan 2023 13:12:03 +0400 Subject: [PATCH] Updated poetry version. Signed-off-by: Pavel Kirilin <win10@list.ru> --- .gitlab-ci.yml | 2 +- deploy/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0350071..838d4c9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,7 +15,7 @@ variables: except: - tags before_script: - - pip install poetry==1.1.6 + - pip install poetry==1.2.2 - poetry config virtualenvs.create false - poetry install diff --git a/deploy/Dockerfile b/deploy/Dockerfile index 701aa31..cfa4784 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.9.6-slim-buster RUN useradd -m bot USER bot -RUN pip install poetry==1.1.6 +RUN pip install poetry==1.2.2 ENV PATH="${PATH}:/home/bot/.poetry/bin:/home/bot/.local/bin" -- GitLab