diff --git a/README.md b/README.md index de71918..854aa97 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ Kingfisher ships with hundreds of rules that cover everything from classic cloud | **Databases & Data Ops** | MongoDB Atlas, PlanetScale, Postgres DSNs, Grafana Cloud, Datadog, Dynatrace, and more | **Payments & Billing** | Stripe, PayPal, Square, GoCardless, and more | **Security & DevSecOps** | Snyk, Dependency-Track, CodeClimate, Codacy, OpsGenie, PagerDuty, and more -| **Misc. SaaS & Tools** | 1Password, Adobe, Atlassian/Jira, Asana, Netlify, Baremetrics, and mmore +| **Misc. SaaS & Tools** | 1Password, Adobe, Atlassian/Jira, Asana, Netlify, Baremetrics, and more ## Write Custom Rules! diff --git a/data/rules/replicate.yml b/data/rules/replicate.yml index 5a20417..b5f1a47 100644 --- a/data/rules/replicate.yml +++ b/data/rules/replicate.yml @@ -1,7 +1,7 @@ rules: - name: Replicate API Token id: kingfisher.replicate.1 - pattern: | # + pattern: | (?x) \b ( diff --git a/docker/Dockerfile b/docker/Dockerfile index ea87c51..6118b45 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -30,8 +30,6 @@ RUN set -eux; \ echo "$EXPECTED_CHECKSUM kingfisher.tgz" | sha256sum -c -; \ tar -xzf kingfisher.tgz; \ rm kingfisher.tgz checksums.txt; \ - tar -xzf kingfisher.tgz; \ - rm kingfisher.tgz; \ # locate the binary (pattern covers kingfisher-linux-x64 / kingfisher-linux-arm64) KF_PATH=$(find . -type f -name 'kingfisher*' -executable -print -quit); \ if [ -z "$KF_PATH" ]; then echo "No executable kingfisher binary found" >&2; exit 1; fi; \