Docker installation in Spiderfoot 3.0 release fails
See original GitHub issueHi, I just downloaded spiderfoot 3.0 release to test it. I followed the instructions here to build the docker container. Everything went fine there. However, when I want to start the container I get the following:
➜ spiderfoot-3.0 docker run --rm -p 5009:5001 spiderfoot
Traceback (most recent call last):
File "./sf.py", line 21, in <module>
import cherrypy
File "/usr/lib/python3.8/site-packages/cherrypy/__init__.py", line 66, in <module>
from ._cperror import (
File "/usr/lib/python3.8/site-packages/cherrypy/_cperror.py", line 135, in <module>
from cherrypy.lib import httputil as _httputil
File "/usr/lib/python3.8/site-packages/cherrypy/lib/httputil.py", line 20, in <module>
import jaraco.collections
File "/usr/lib/python3.8/site-packages/jaraco/collections.py", line 9, in <module>
import jaraco.text
File "/usr/lib/python3.8/site-packages/jaraco/text/__init__.py", line 8, in <module>
import six
ModuleNotFoundError: No module named 'six'
´´´
So my guess is, that somewhere during the build was the requirement not installed.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Documentation - SpiderFoot
Using Docker. If you would like to side-step having to install anything to get SpiderFoot running on Linux, follow the instructions here to...
Read more >Requirements Failure at Line 19 · Issue #492 - GitHub
ERROR : Could not find a version that satisfies the requirement secure (from -r requirements.txt (line 19)) (from versions: none)
Read more >Article 02: ~Installing and Running SpiderFoot via Docker
OBJECTIVE: To configure and run SpiderFoot OSINT Tool for investigation purpose (e.g. Investigate Malicious IP/Domain etc) via isolated *Docker ...
Read more >Install SpiderFoot on Linux | Snap Store - Snapcraft
Get the latest version of SpiderFoot for Linux - SpiderFoot is an open source ... web searching * Dockerfile for Docker-based deployments *...
Read more >SpiderFoot 3.0: OSINT reconnaissance tool - Andrea Fortuna
SpiderFoot is an OSINT automation tool for reconnaissance process, written in Python 3 and GPL-licensed. Recently, Steve Micallef released ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Same for me 😦
It works with the older alpine image, so based on that evidence, it’s at least related to the alpine image version. Not removing build dependencies is an interesting workaround but would result in a larger image, possibly a much larger image. I suppose we could remove build dependencies and then reinstall the
six
package and other necessary runtime packages to support the newer alpine version.