Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/solareenlo/docker-ubuntu-valgrind


https://github.com/solareenlo/docker-ubuntu-valgrind

dockerfile valgrind

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# solareenlo/ubuntu-valgrind

## Usage
```sh
docker build . -t valgrind
docker run -it --rm -v $(pwd):/code valgrind
make re
valgrind --leak-check=full --show-leak-kinds=all ./minishell

# or
docker run -it --rm -v $PWD:/code solareenlo/ubuntu-valgrind
make re
valgrind --leak-check=full --show-leak-kinds=all ./minishell
```