Skip to content

Commit

Permalink
#450 Add custom Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om authored and nadouani committed Apr 5, 2019
1 parent cacc199 commit 53950b5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions analyzers/Abuse_Finder/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:2

WORKDIR /worker
COPY . Abuse_Finder
RUN pip install --no-cache-dir -r Abuse_Finder/requirements.txt
ENTRYPOINT Abuse_Finder/abusefinder.py
4 changes: 2 additions & 2 deletions analyzers/FileInfo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM python:3

WORKDIR /analyzer
WORKDIR /worker
COPY . FileInfo
RUN apt update && \
apt install -y -q libfuzzy-dev libimage-exiftool-perl && \
rm -rf /var/lib/apt/lists/* && \
pip install --no-cache-dir -r FileInfo/requirements.txt
CMD FileInfo/fileinfo_analyzer.py
ENTRYPOINT FileInfo/fileinfo_analyzer.py
6 changes: 6 additions & 0 deletions responders/FalconCustomIOC/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:2

WORKDIR /worker
COPY . FalconCustomIOC
RUN pip install --no-cache-dir -r FalconCustomIOC/requirements.txt
ENTRYPOINT FalconCustomIOC/FalconCustomIOC.py

0 comments on commit 53950b5

Please sign in to comment.