-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* new image: vendors-sdk * added verify file * cr changes * rollback confluent-kafka to 1.7.0" * add domaintools-api module
- Loading branch information
Showing
6 changed files
with
1,206 additions
and
0 deletions.
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 @@ | ||
requirements.txt |
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,10 @@ | ||
|
||
FROM demisto/python3:3.10.13.72123 | ||
|
||
COPY requirements.txt . | ||
|
||
RUN apk --update add --no-cache librdkafka-dev libmagic | ||
|
||
RUN apk --update add --no-cache --virtual .build-dependencies python3-dev build-base wget git \ | ||
&& pip install --no-cache-dir -r requirements.txt \ | ||
&& apk del .build-dependencies |
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 @@ | ||
version=1.0.0 |
Large diffs are not rendered by default.
Oops, something went wrong.
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,24 @@ | ||
[tool.poetry] | ||
name = "dockerfiles" | ||
version = "0.1.0" | ||
description = "" | ||
authors = ["Your Name <[email protected]>"] | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "~3.10" | ||
cloakensdk = "*" | ||
confluent-kafka = "==1.7.0" # https://github.com/confluentinc/confluent-kafka-python/issues/180 | ||
fp-ngfw-smc-python = "*" | ||
pydantic = "*" | ||
duo-client = "*" | ||
pycti = "*" | ||
pyhcl = "*" | ||
cymruwhois = "*" | ||
jbxapi = "*" | ||
domaintools-api = "*" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
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,17 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import cloakensdk.client | ||
import cloakensdk.resources | ||
import cloakensdk.utility | ||
|
||
import confluent_kafka | ||
import smc | ||
import pydantic | ||
|
||
import duo_client | ||
import pycti | ||
import hcl | ||
import cymruwhois | ||
import jbxapi | ||
|
||
print('Verify of vendors-sdk image passed!') |