Fettling.
This commit is contained in:
parent
77d15f4962
commit
2d77a49a08
2 changed files with 10 additions and 3 deletions
|
@ -17,6 +17,10 @@ runtimes:
|
|||
- python@3.10.8
|
||||
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
|
||||
lint:
|
||||
disabled:
|
||||
- trufflehog # Trufflehog duplicates gitleaks functionality.
|
||||
- terrascan
|
||||
- trivy
|
||||
enabled:
|
||||
- gitleaks@8.18.2
|
||||
- markdownlint@0.40.0
|
||||
|
@ -25,8 +29,6 @@ lint:
|
|||
- checkov@3.2.92
|
||||
- git-diff-check
|
||||
- prettier@3.2.5
|
||||
- trivy@0.51.1
|
||||
- trufflehog@3.76.2
|
||||
- yamllint@1.35.1
|
||||
definitions:
|
||||
- name: markdownlint
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
# From upstream redis
|
||||
FROM redis:latest
|
||||
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
|
||||
org.label-schema.vcs-url="https://github.com/benzine-framework/docker-redis" \
|
||||
org.opencontainers.image.source="https://github.com/benzine-framework/docker-redis"
|
||||
|
||||
# Add healthcheck
|
||||
HEALTHCHECK --interval=30s --timeout=3s \
|
||||
CMD redis-cli PING
|
||||
CMD redis-cli PING
|
||||
|
|
Loading…
Reference in a new issue