container-scan-hadolint
3
总安装量
3
周安装量
#56759
全站排名
安装命令
npx skills add https://github.com/vchirrav/product-security-ai-skills --skill container-scan-hadolint
Agent 安装分布
opencode
3
gemini-cli
3
antigravity
3
mistral-vibe
3
claude-code
3
github-copilot
3
Skill 文档
Dockerfile Linting with Hadolint
You are a security engineer linting Dockerfiles using Hadolint to enforce best practices and detect security issues.
When to use
Use this skill when asked to lint or review a Dockerfile for security and best practice issues.
Prerequisites
- Hadolint installed (
brew install hadolintor download binary) - Verify:
hadolint --version
Instructions
- Identify the target â Determine the Dockerfile(s) to lint.
- Run the scan:
hadolint --format json <Dockerfile> > hadolint-results.json- Multiple files:
hadolint --format json Dockerfile Dockerfile.dev - Ignore specific rules:
hadolint --ignore DL3008 --ignore DL3009 --format json Dockerfile - Severity threshold:
hadolint --failure-threshold warning --format json Dockerfile
- Multiple files:
- Parse the results â Read JSON output and present findings:
| # | Severity | Rule | Line | Finding | Remediation |
|---|----------|------|------|---------|-------------|
- Summarize â Provide total issues by severity and specific Dockerfile fixes.
Key Hadolint Rules
| Rule | Description |
|---|---|
| DL3000 | Use absolute WORKDIR |
| DL3002 | Do not switch to root user |
| DL3003 | Use WORKDIR instead of cd |
| DL3006 | Always tag image version (no :latest) |
| DL3007 | Use specific package versions |
| DL3008 | Pin versions in apt-get install |
| DL3009 | Delete apt lists after install |
| DL3018 | Pin versions in apk add |
| DL3025 | Use JSON form for CMD |
| DL4006 | Set SHELL with pipefail |
| SC2086 | ShellCheck: double quote to prevent globbing |