https://github.com/volker-raschek/gosec-docker
[MIRROR]: Source files of the container image volkerraschek/gosec
https://github.com/volker-raschek/gosec-docker
container golang golangci-lint gosec linter
Last synced: about 2 months ago
JSON representation
[MIRROR]: Source files of the container image volkerraschek/gosec
- Host: GitHub
- URL: https://github.com/volker-raschek/gosec-docker
- Owner: volker-raschek
- License: other
- Created: 2024-12-20T09:13:03.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-02-28T20:24:40.000Z (3 months ago)
- Last Synced: 2025-02-28T23:34:09.737Z (3 months ago)
- Topics: container, golang, golangci-lint, gosec, linter
- Language: Makefile
- Homepage: https://hub.docker.com/r/volkerraschek/gosec
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gosec-docker
[](https://drone.cryptic.systems/volker.raschek/gosec-docker)
[](https://hub.docker.com/r/volkerraschek/gosec)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](github.com/securego/gosec).## drone
Here is an example how to use `docker.io/volkerraschek/gosec` to scan for
vulerabilities.```yaml
kind: pipeline
type: kubernetes
name: vulnerability-scanplatform:
os: linux
arch: amd64steps:
- name: gosec
commands:
- gosec -v ./...
image: docker.io/volkerraschek/gosec:latest
resources:
limits:
cpu: 250
memory: 500M
```