mirror of
https://github.com/valitydev/Cortex-Analyzers.git
synced 2024-11-06 09:05:19 +00:00
#450 Add custom Dockerfiles
This commit is contained in:
parent
cacc199457
commit
53950b5810
6
analyzers/Abuse_Finder/Dockerfile
Normal file
6
analyzers/Abuse_Finder/Dockerfile
Normal file
@ -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
|
@ -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
responders/FalconCustomIOC/Dockerfile
Normal file
6
responders/FalconCustomIOC/Dockerfile
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user