From b1d8b6aad81e4e132ab4403fbf4d139a87e64396 Mon Sep 17 00:00:00 2001 From: Dustin Black Date: Tue, 5 Aug 2025 11:50:37 +0200 Subject: [PATCH] explicitly install poetry-plugin-export --- Dockerfile.buildbase | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile.buildbase b/Dockerfile.buildbase index 28f7b36..f3e2a50 100755 --- a/Dockerfile.buildbase +++ b/Dockerfile.buildbase @@ -7,7 +7,9 @@ RUN dnf -y install gcc-c++ python3.12-devel openssl-devel \ COPY constraints.txt constraints.txt # Setup poetry -RUN python3 -m pip install --constraint constraints.txt poetry==1.8.3 \ +RUN python3 -m pip install --constraint constraints.txt \ + poetry==1.8.3 \ + poetry-plugin-export==1.8.0 \ && python3 -m poetry config virtualenvs.create false # Setup coverage