From 7999c18081a62d89b85e3579ea0d45e56d73b2b4 Mon Sep 17 00:00:00 2001 From: kaltepeter Date: Thu, 27 Feb 2025 10:04:57 -0600 Subject: [PATCH] fix: poetry, install specific version --- Dockerfile | 4 ++-- Dockerfile.test-nx | 2 +- build.sh | 6 +++--- test-app/Dockerfile | 2 +- test-nx/Dockerfile | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3909f29..0e9260c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,9 +44,9 @@ RUN npm install -g azurite USER python VOLUME /home/python -ENV PATH /home/python/.local/bin:$PATH +ENV PATH=/home/python/.local/bin:$PATH -RUN pipx install poetry && \ +RUN pipx install poetry==1.8.5 && \ pipx install nox RUN cat <