skavngr / rapidscan

:new: The Multi-Tool Web Vulnerability Scanner.
GNU General Public License v2.0
1.69k stars 385 forks source link

A problem in the Dockerfile #10

Closed benhacka closed 3 years ago

benhacka commented 4 years ago

First, I would like to thank you for the script. Many thanks! Amazing work.

With use the current version of Dockerfile, we cant build our own image, because we can see an error (and this is pretty essential addiction): E: Unable to locate package golismero

You need to add a non-free repo to the Dockerfile - edit current Dockfile like this for example:

FROM kalilinux/kali-rolling
RUN echo "deb http://old.kali.org/kali sana main non-free contrib" >> ./etc/apt/sources.list
RUN apt-get update && apt-get -yu dist-upgrade -y
# etc

After updating with non-free repo, all work fine.

sh4nx0r commented 4 years ago

Appreciate if you could initiate a PR and I shall merge it with the main branch.