-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1233 from TheHive-Project/ci-fixes
fix build for Autofocus and MalwareClustering
- Loading branch information
Showing
2 changed files
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM python:3.11 | ||
WORKDIR /worker | ||
COPY . Autofocus | ||
RUN test ! -e Autofocus/requirements.txt || pip install --no-cache-dir -r Autofocus/requirements.txt | ||
ENTRYPOINT Autofocus/analyzer.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
cortexutils | ||
requests | ||
pyimpfuzzy==0.5 | ||
py2neo==2021.0.1 | ||
# py2neo is EOL and older versions were deleted from pipy https://github.com/neo4j-contrib/py2neo | ||
py2neo==2021.2.4 | ||
apiscout==1.1.5 | ||
python-magic==0.4.22 |