Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waanlabs/dockerscan
Build and scan your docker image for vulnerabilities.
https://github.com/waanlabs/dockerscan
action docker github-actions shell-script
Last synced: about 1 month ago
JSON representation
Build and scan your docker image for vulnerabilities.
- Host: GitHub
- URL: https://github.com/waanlabs/dockerscan
- Owner: waanlabs
- License: mit
- Created: 2024-06-10T03:14:28.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-01T17:18:29.000Z (5 months ago)
- Last Synced: 2024-09-30T23:24:55.089Z (about 2 months ago)
- Topics: action, docker, github-actions, shell-script
- Language: Shell
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dockercheck
Check your Dockerfile build via actions.
## Overview
This action checks if a Docker build completes correctly.
## Inputs
### `path`
**Required** The path to the Dockerfile. Default is `.`.
### `build_args`
**Optional** Additional arguments to pass to the Docker build command.
## Example usage
```yaml
name: Docker Buildon:
push:
branches:
- main
pull_request:
branches:
- mainjobs:
build:
runs-on: ubuntu-lateststeps:
- name: Checkout repository
uses: actions/checkout@v2- name: Run Docker Build Check
uses: your-username/dockcheck@v1
with:
path: path/to/dockerfile
build_args: "--no-cache"