From 0c3c49d68f284c8fc35a3f205cb0068c73da2a9d Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Wed, 9 Oct 2024 14:46:17 +0200 Subject: [PATCH] chore(ci): update poetry install params --- .github/workflows/check-validation.yml | 2 +- docker/Dockerfile-debian | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-validation.yml b/.github/workflows/check-validation.yml index ca08acf..16f8256 100644 --- a/.github/workflows/check-validation.yml +++ b/.github/workflows/check-validation.yml @@ -13,7 +13,7 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - name: "Install poetry" - run: nix-shell --run "poetry install" + run: nix-shell --run "poetry install --no-root" - name: Run style check run: nix-shell --run "poetry run make style_check" - name: Run code check diff --git a/docker/Dockerfile-debian b/docker/Dockerfile-debian index 165d962..0a07636 100644 --- a/docker/Dockerfile-debian +++ b/docker/Dockerfile-debian @@ -42,7 +42,7 @@ WORKDIR /trezor-user-env # Install Python dependencies using poetry RUN poetry cache clear --all pypi -RUN poetry install --no-dev --no-root +RUN poetry install --no-root --without dev # Execute scripts and clean up RUN ./src/binaries/firmware/bin/download.sh