Skip to content

solareenlo/docker-ubuntu-valgrind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

solareenlo/ubuntu-valgrind

Usage

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