Closed MrJico closed 3 years ago
This is needed for Docker or Python installs that lack Colorama. Current docker execution example can be used to reproduce:
docker run -v "${PWD}:/files:ro" --name dumpsterdiver --rm rzepsky/dumpsterdiver -p /files
Traceback (most recent call last): File "DumpsterDiver.py", line 9, in import colorama ModuleNotFoundError: No module named 'colorama'
Have confirmed adding colorama to requirements.txt fixes the docker image
Thanks for pointing this. Added colorama to requirements.txt
The change has been addressed in PR #42. Please close this PR
This is needed for Docker or Python installs that lack Colorama. Current docker execution example can be used to reproduce:
docker run -v "${PWD}:/files:ro" --name dumpsterdiver --rm rzepsky/dumpsterdiver -p /files
Traceback (most recent call last): File "DumpsterDiver.py", line 9, in
import colorama
ModuleNotFoundError: No module named 'colorama'
Have confirmed adding colorama to requirements.txt fixes the docker image