uSBS icon indicating copy to clipboard operation
uSBS copied to clipboard

Invalid configuration for installing requirements in docker container

Open ljungnickel opened this issue 10 months ago • 0 comments

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!

ljungnickel avatar Apr 29 '24 10:04 ljungnickel