You can not 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/push Build is passing
Details
|
2 months ago | |
---|---|---|
.dockerignore | 1 year ago | |
.drone.yml | 3 months ago | |
.editorconfig | 1 year ago | |
.gitattributes | 1 year ago | |
.gitignore | 1 year ago | |
.markdownlint.yaml | 1 year ago | |
Dockerfile | 2 months ago | |
LICENSE | 1 year ago | |
Makefile | 2 months ago | |
README.md | 1 year ago | |
manifest.tmpl | 1 year ago | |
renovate.json | 1 year 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