Summary
A Docker image would make it easy to use AKF in CI/CD pipelines without installing Python.
What needs to happen
- Create a
Dockerfile in the repo root
- Base on
python:3.12-slim
- Install
akf from the local source
- Set entrypoint to
akf
- Add usage examples to the Dockerfile or a README section
Example usage
```bash
docker run --rm -v $(pwd):/work ghcr.io/hmakt99/akf stamp /work/report.md
```
Acceptance criteria
Summary
A Docker image would make it easy to use AKF in CI/CD pipelines without installing Python.
What needs to happen
Dockerfilein the repo rootpython:3.12-slimakffrom the local sourceakfExample usage
```bash
docker run --rm -v $(pwd):/work ghcr.io/hmakt99/akf stamp /work/report.md
```
Acceptance criteria
docker build .worksdocker runcan stamp and inspect files