Dockerfile for building a Linux container for testing and debugging C programs.
Useful to access tools not available or partially working on macOS (GDB, Valgrind, ...).
Pull the dockerfile
docker pull ouweis/doc-debug
And now run it like this
docker run -it --rm -v $PWD:/home ouweis/doc-debug
You can also make an alias of it
alias doc-debug="docker run -it --rm -v '$PWD:/home' ouweis/doc-debug"
- Add custom config for shell
- Add other tools ?