diff --git a/Dockerfile-community b/Dockerfile-community new file mode 100644 index 0000000..424b9c4 --- /dev/null +++ b/Dockerfile-community @@ -0,0 +1,33 @@ +FROM viper-docker-base + +# basic requirements +RUN apt update \ + && apt install -y libssl-dev swig libffi-dev ssdeep libfuzzy-dev p7zip-full + +# fix unrar not found +RUN apt install -y unrar-free + +# fix bitstring module not found +RUN pip3 install bitstring + +# fix OSError: libusb-1.0.so: cannot open shared object file: No such file or directory +RUN apt install -y libusb-1.0-0-dev + +# Exif +RUN apt install -y exiftool + +# ClamAV +RUN apt install -y clamav-daemon + +#Tor +RUN apt install -y tor + +#Scraper +RUN apt install -y libdpkg-perl + +# get community modules +RUN echo update-modules | viper + +# fix ERROR: pymisp 2.4.124 has requirement jsonschema<4.0.0,>=3.2.0, but you'll have jsonschema 3.0.1 which is incompatible. +# fix ERROR: pymispgalaxies 0.2 has requirement jsonschema<4.0.0,>=3.2.0, but you'll have jsonschema 3.0.1 which is incompatible. +RUN pip3 install jsonschema==3.2.0