uSBS
uSBS copied to clipboard
Invalid configuration for installing requirements in docker container
Hi, when I clone the repository and run "make run" to build the docker container, the installation fails due to the package "setuptools", which has to have a version higher than 46.4.0. To fix this issue and be able to run the docker container properly, I changed this line in the Dockerfile:
RUN pip install pathlib2 lief==0.8.0.post7 pwntools==4.3.1 keystone-engine==0.9.2 six==1.16.0
to
RUN pip install pyelftools==0.24 pathlib2 lief==0.8.0.post7 pwntools==4.3.1 keystone-engine==0.9.2 six==1.16.0
This way I am able to build to docker container properly.
Could you change this in the Dockerfile configuration? Thanks!