Skip to content
This repository was archived by the owner on May 15, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Dockerfile-community
Original file line number Diff line number Diff line change
@@ -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