https://github.com/avitase/docker-valgrind
Docker container exposing a leading edge version of valgrind and decent cmake and g++ installations.
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (7.6%) to scientific vocabulary
Keywords
Repository
Docker container exposing a leading edge version of valgrind and decent cmake and g++ installations.
Basic Info
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
Docker-Valgrind
The container exposes a leading edge version of valgrind and decent cmake and g++ installations. The idea is to mount the root directory of your project to /input (read-only), compile it in the container to a temporary directory and show the logged output.
For example, consider the test project we provide in test/:
```
tree test/ test/ ├── CMakeLists.txt └── test.cxx ``
TheWORKDIRis set to/home/valgrind/build, such that one can safely compile this test project after mounting-v "$SRC":/input:ro, viacmake /input/ && make. SinceWORKDIR` is not part of a mounted volume, the result does not appear outside of the container. This workflow can conveniently be wrapped in a shell script, for instance as we did in valgrind.sh.
Docker Pull Command
The container is accessible via the Docker Hub: docker pull avitase/docker-valgrind.
You can create your own Dockerfile and install additional dependencies of your project via apk, for example:
```
FROM avitase/docker-valgrind:latest
USER root apk add --update gtest
USER ${USERNAME} ```
Owner
- Name: Nis Meinert
- Login: avitase
- Kind: user
- Company: Pasteur Labs
- Repositories: 9
- Profile: https://github.com/avitase
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0