From af65f879e6b436361490f7b0b811994d3944ed25 Mon Sep 17 00:00:00 2001 From: ainiml Date: Fri, 10 Apr 2020 02:53:05 -0400 Subject: [PATCH] Installs all community modules --- Dockerfile-community | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Dockerfile-community 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