Source files of the container image volkerraschek/gosec
Go to file
Markus Pesch f708f781eb
continuous-integration/drone/push Build is passing Details
Merge pull request 'Update dependency gosec to v2.9.6' (#2) from renovate/gosec-2.x into master
Reviewed-on: #2
2022-01-31 18:18:18 +00:00
.dockerignore Initial Commit 2022-01-30 22:49:28 +01:00
.drone.yml Initial Commit 2022-01-30 22:49:28 +01:00
.editorconfig Initial Commit 2022-01-30 22:49:28 +01:00
.gitattributes Initial Commit 2022-01-30 22:49:28 +01:00
.gitignore Initial Commit 2022-01-30 22:49:28 +01:00
.markdownlint.yaml Initial Commit 2022-01-30 22:49:28 +01:00
Dockerfile Update docker.io/library/golang Docker tag to v1.17.6 2022-01-30 22:50:28 +01:00
LICENSE Initial Commit 2022-01-30 22:49:28 +01:00
Makefile Update dependency gosec to v2.9.6 2022-01-30 22:01:04 +00:00
README.md Initial Commit 2022-01-30 22:49:28 +01:00
manifest.tmpl Initial Commit 2022-01-30 22:49:28 +01:00
renovate.json Initial Commit 2022-01-30 22:49:28 +01:00

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