fix: add comment how to obtain these files

This commit is contained in:
Gabriel Nützi
2025-12-10 18:57:50 +01:00
parent 718958cc4a
commit a2c4161b45
@@ -1,4 +1,11 @@
# Content
These are some files which are copied to the image in the runner needed for
`buildah` (`podman`).
`buildah` (`podman`):
```bash
podman create --name temp-buildah quay.io/buildah/stable:latest
podman cp temp-buildah:/etc/containers ./etc/
find ./etc -type d -empty -delete
podman container rm temp-buildah
```