From 6d87998cb1111881996ec4b317d629504779bff3 Mon Sep 17 00:00:00 2001 From: Piotr Senkow Date: Wed, 15 Jan 2025 13:35:34 -0600 Subject: [PATCH] trying to fix breaking build due to this poetry command --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b19442dd..5df1e18a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,8 @@ FROM base # This will ensure dependencies are cached COPY poetry.lock pyproject.toml /$appname/ RUN poetry config virtualenvs.create false \ - && poetry install -vvv --no-root --without dev --no-interaction --no-root + && poetry install -vv --no-root --without dev --no-interaction \ + && poetry show -v # Install PostgreSQL libraries RUN dnf install -y postgresql-libs