gittuf/debug/README.md
Aditya Sirish A Yelgundhalli 4f22a329be
debug: Add Dockerfile for debugging gittuf on Git 2.34.1
Signed-off-by: Aditya Sirish A Yelgundhalli <ayelgundhall@bloomberg.net>
2024-10-29 23:00:16 -04:00

16 lines
490 B
Markdown

# Debug Helpers
This directory contains tools or artifacts used by the gittuf developers during
debugging.
## Debugging gittuf with Git 2.34.1
Build and run the container from the root of the gittuf repository.
```bash
docker build -t debug-gittuf-2-34-1 -f debug/Dockerfile.Git_2_34_1 .
docker run -it --rm -v $PWD:/gittuf -w /gittuf debug-gittuf-2-34-1
```
As the gittuf repository is mounted as a volume, you can make changes on the
host and iteratively debug within the container.