Skip to content

Commit

Permalink
Merge branch 'main' into feature/report_creations_are_scheduled
Browse files Browse the repository at this point in the history
  • Loading branch information
Rieven authored Jan 10, 2025
2 parents f65461a + 20ac859 commit b829402
Show file tree
Hide file tree
Showing 50 changed files with 94,922 additions and 2,215 deletions.
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ repos:
- id: fix-byte-order-marker
- id: pretty-format-json
args: ["--autofix", "--no-ensure-ascii", "--no-sort-keys"]
exclude: |
(?x)(
^boefjes/boefjes/plugins/kat_wappalyzer/technologies.json |
)
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.23
Expand Down Expand Up @@ -122,6 +126,7 @@ repos:
requirements-.*.txt$ |
retirejs.json$ |
^boefjes/boefjes/plugins/kat_fierce/lists |
^boefjes/boefjes/plugins/kat_wappalyzer/data/.*.json |
^boefjes/tests/examples/inputs/cve-result-without-cvss.json |
^boefjes/tests/examples |
^keiko/glossaries |
Expand Down
6 changes: 2 additions & 4 deletions boefjes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,9 @@ RUN --mount=type=cache,target=/root/.cache \
pip install --upgrade pip \
&& if [ "$ENVIRONMENT" = "dev" ]; \
then \
grep -v git+https:// requirements-dev.txt | pip install -r /dev/stdin && \
grep git+https:// requirements-dev.txt | pip install -r /dev/stdin ; \
pip install -r requirements-dev.txt; \
else \
grep -v git+https:// requirements.txt | pip install -r /dev/stdin && \
grep git+https:// requirements.txt | pip install -r /dev/stdin ; \
pip install -r requirements.txt; \
fi

FROM dev
Expand Down
Loading

0 comments on commit b829402

Please sign in to comment.