Source files of the container image volkerraschek/gosec
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.
 
 
Go to file
CSRBot 975aceabab
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build encountered an error Details
chore(deps): update quay.io/skopeo/stable docker tag to v1.13.3
5 days ago
.dockerignore Initial Commit 2 years ago
.drone.yml chore(deps): update quay.io/skopeo/stable docker tag to v1.13.3 5 days ago
.editorconfig Initial Commit 2 years ago
.gitattributes Initial Commit 2 years ago
.gitignore Initial Commit 2 years ago
.markdownlint.yaml Initial Commit 2 years ago
Dockerfile chore(deps): update docker.io/library/golang docker tag to v1.21.1 3 weeks ago
LICENSE Initial Commit 2 years ago
Makefile chore(deps): update dependency securego/gosec to v2.17.0 1 month ago
README.md Initial Commit 2 years ago
manifest.tmpl fix(ci): migrate to git.cryptic.systems 3 months ago
renovate.json fix(renovate): exclude updating docker.io/plugins/docker 3 weeks ago

README.md

gosec-docker

Build Status Docker Pulls

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