You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
continuous-integration/drone/pr Build is passing
Details
continuous-integration/drone/push Build encountered an error
Details
|
5 days ago | |
---|---|---|
.dockerignore | 2 years ago | |
.drone.yml | 5 days ago | |
.editorconfig | 2 years ago | |
.gitattributes | 2 years ago | |
.gitignore | 2 years ago | |
.markdownlint.yaml | 2 years ago | |
Dockerfile | 3 weeks ago | |
LICENSE | 2 years ago | |
Makefile | 1 month ago | |
README.md | 2 years ago | |
manifest.tmpl | 3 months ago | |
renovate.json | 3 weeks ago |
README.md
gosec-docker
This project contains all sources to build the container image
docker.io/volkerraschek/gosec
. The primary goal of this project is to package
the binary gosec
as container image to provide the functionally for CI/CD
workflows. The source code of the binary can be found in the upstream project of
gosec.
drone
Here is an example how to use docker.io/volkerraschek/gosec
to scan for
vulerabilities.
kind: pipeline
type: kubernetes
name: vulnerability-scan
platform:
os: linux
arch: amd64
steps:
- name: gosec
commands:
- gosec -v ./...
image: docker.io/volkerraschek/gosec:latest
resources:
limits:
cpu: 250
memory: 500M