Skip to content

Commit

Permalink
test(weaver/indy-plenum): fix dockerfile - use pip3 install instead o…
Browse files Browse the repository at this point in the history
…f setup.py

Changed the line 24 of the dockerfile.
Removed the use of the erroneous setup.py.
Replaced it with pip3 install instead.
All the dependencies are modeled from setup.py.
Fixes #2500
https://github.com/hyperledger/cacti/issues/2500

Signed-off-by: Rudransh Sharma <[email protected]>
  • Loading branch information
Rudransh Sharma authored and petermetz committed Jul 6, 2023
1 parent d8d538d commit 9667850
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion weaver/tests/network-setups/indy/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ RUN python3 -m pip install -U pip
RUN python3 -m pip uninstall -y indy-plenum
RUN python3 -m pip uninstall -y indy-node

RUN cd indy-plenum && python3 setup.py install
RUN pip3 install jsonpickle==0.9.6 ujson==1.33 prompt_toolkit==0.57 pygments==2.2.0 rlp==0.5.1 sha3==0.2.1 leveldb ioflo==1.5.4 semver==2.7.9 base58==1.0.0 orderedset==2.0.3 sortedcontainers==1.5.7 psutil==5.6.6 importlib_metadata>=2.0 portalocker==0.5.7 libnacl==1.6.1 six==1.11.0 intervaltree==2.1.0 msgpack-python==0.4.6 python-rocksdb==0.6.9 python-dateutil==2.6.1 pympler==0.8 packaging==19.0 python-ursa==0.1.1 pyzmq==18.1.0


WORKDIR /usr/src/indy_projects/indy-node
RUN python3 setup.py install
Expand Down

0 comments on commit 9667850

Please sign in to comment.