Source files of the container image volkerraschek/gosec
Go to file
Markus Pesch c9fca2da82 Merge pull request 'chore(deps): update dependency securego/gosec to v2.17.0' (#38) from renovate/securego-gosec-2.x into master
Reviewed-on: #38
2023-08-27 16:46:26 +00:00
.dockerignore Initial Commit 2022-01-30 22:49:28 +01:00
.drone.yml chore(deps): update dependency quay.io/skopeo/stable to v1.13.1 2023-08-02 01:13:39 +02: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 chore(deps): update dependency docker.io/library/golang to v1.20.7 2023-08-02 00:32:45 +02:00
LICENSE Initial Commit 2022-01-30 22:49:28 +01:00
Makefile chore(deps): update dependency securego/gosec to v2.17.0 2023-08-18 15:20:57 +02:00
README.md Initial Commit 2022-01-30 22:49:28 +01:00
manifest.tmpl fix(ci): migrate to git.cryptic.systems 2023-07-08 18:52:06 +02:00
renovate.json fix(renovate): automerge patch versions of used container images in docker files 2023-06-18 21:46:23 +02: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