Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tomoyamachi committed Jan 2, 2023
1 parent 70bd61d commit 3329b0d
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion README.md
@@ -1 +1,38 @@
# dockle-action
# dockle-action

GitHub Actions for [goodwithtech/dockle](https://github.com/goodwithtech/dockle)

> Dockle - Container Image Linter for Security, Helping build the Best-Practice Docker Image, Easy to start
Dockle helps you:

1. Build Best Practice Docker images
2. Build secure Docker images
- Checkpoints include CIS Benchmarks


# Usage

```yaml
name: check
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build an image from Dockerfile
run: |
docker build -t built-image:scan .
- name: Run dockle
uses: goodwithtech/dockle-action@main
with:
image: 'built-image:scan'
format: 'list'
exit-code: '1'
exit-level: 'warn'
ignore: 'CIS-DI-0001,DKL-DI-0006'
```

0 comments on commit 3329b0d

Please sign in to comment.