From 9b36c464ccada6346d6cf6796431d24217552dc3 Mon Sep 17 00:00:00 2001 From: Phil Date: Thu, 9 Apr 2026 14:18:16 +0200 Subject: [PATCH] Update Dockerfile to install poetry-plugin-export --- environments/Dockerfile-LDAP | 2 ++ 1 file changed, 2 insertions(+) diff --git a/environments/Dockerfile-LDAP b/environments/Dockerfile-LDAP index a62f22c86..cc1aa24bc 100644 --- a/environments/Dockerfile-LDAP +++ b/environments/Dockerfile-LDAP @@ -30,6 +30,8 @@ COPY ../plugins /source/plugins # Install the nautobot project to include Nautobot RUN cd /source && \ poetry install --no-interaction --no-ansi && \ + # Try to install the export plugin for Poetry v2, if it fails it's probably v1 so we can ignore it + poetry self add poetry-plugin-export || true && \ mkdir /tmp/dist && \ poetry export --without-hashes -o /tmp/dist/requirements.txt