Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stefan-hudelmaier/cppcheck-docker
Docker image for cppcheck - a static analysis tool for C++
https://github.com/stefan-hudelmaier/cppcheck-docker
Last synced: 13 days ago
JSON representation
Docker image for cppcheck - a static analysis tool for C++
- Host: GitHub
- URL: https://github.com/stefan-hudelmaier/cppcheck-docker
- Owner: stefan-hudelmaier
- License: apache-2.0
- Created: 2015-11-29T10:45:00.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-29T11:53:03.000Z (almost 9 years ago)
- Last Synced: 2023-03-03T02:26:53.584Z (over 1 year ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cppcheck-docker
Docker image for cppcheck - a static analysis tool for C++
See
This docker image might be useful for continuous integration scenarios
where one does not want to install cppcheck on all slave nodes.The docker repository can be found here:
# Available tags
* latest
* 1.71# Usage
The directory with the source to be checked must be mounted as a volume under /src.
Parameters to cppcheck can be given after the image.```
docker run -v $(pwd)/src:/src stefanhudelmaier/cppcheck \
--enable=all --xml --xml-version=2 2> /tmp/cppcheck.xml
```