Skip to content

Commit

Permalink
docker: use pip install + poetry export instead of poetry update
Browse files Browse the repository at this point in the history
I dunno man, poetry just seems like a mess.
  • Loading branch information
niftynei authored and rustyrussell committed Sep 18, 2022
1 parent 37c07dd commit 37fc0d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/docker/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export LIGHTNINGD_POSTGRES_NO_VACUUM=1

pip3 install --upgrade pip
pip3 install --user poetry
poetry config virtualenvs.create false --local
poetry install
poetry export --dev --without-hashes -o requirements.txt
pip3 install -r requirements.txt

git clone https://github.com/lightningnetwork/lightning-rfc.git ../lightning-rfc
git submodule update --init --recursive
Expand Down

0 comments on commit 37fc0d8

Please sign in to comment.