Source files of the container image volkerraschek/gosec
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.
 
 
Go to file
Markus Pesch d60f8ecf3b
continuous-integration/drone/push Build is passing Details
Merge pull request 'chore(deps): update dependency securego/gosec to v2.15.0' (#25) from renovate/securego-gosec-2.x into master
2 months ago
.dockerignore Initial Commit 1 year ago
.drone.yml chore(deps): update dependency docker.io/volkerraschek/markdownlint to v0.33.0 3 months ago
.editorconfig Initial Commit 1 year ago
.gitattributes Initial Commit 1 year ago
.gitignore Initial Commit 1 year ago
.markdownlint.yaml Initial Commit 1 year ago
Dockerfile chore(deps): update dependency docker.io/library/golang to v1.20.0 2 months ago
LICENSE Initial Commit 1 year ago
Makefile chore(deps): update dependency securego/gosec to v2.15.0 2 months ago
README.md Initial Commit 1 year ago
manifest.tmpl Initial Commit 1 year ago
renovate.json fix(ci): renovate regex 1 year 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