From 5a02d950dfe7ec4c817b364657e6034044b356f6 Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Mon, 26 Feb 2024 16:45:07 -0400 Subject: [PATCH] build: update Poetry --- .gitlab-ci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0008447a..e0372345 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ build-openapi-scheme: - apt-get update - apt-get install -y gcc libldap2-dev libsasl2-dev libmagic-dev - pip install --upgrade pip - - pip install poetry==1.7.0 + - pip install poetry==1.8.0 - poetry install --without dev,test --no-root script: - mkdir public diff --git a/Dockerfile b/Dockerfile index d376869c..03f25bbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN apt-get update && \ apt-get install --yes --no-install-recommends curl gcc graphviz ldap-utils libldap2-dev \ libmagic1 libsasl2-dev make && \ python -m venv ${POETRY_HOME} && \ - pip install --no-cache-dir poetry==1.7.1 && \ + pip install --no-cache-dir poetry==1.8.0 && \ poetry install && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -- GitLab