gitingesters 0.1.0

A secure Rust CLI wrapper for gitingest local Docker workflow
1
2
3
4
5
6
7
8
9
10
FROM python:3.12-slim

# Install gitingest
RUN pip install --no-cache-dir gitingest

# Set working directory to /data where files will be mounted
WORKDIR /data

# Run gitingest on a provided path or URL
ENTRYPOINT ["/bin/bash", "-c", "gitingest \"$1\" -o /output/digest.txt"]