From a2c4161b4552c398ee26a4f0e2fe603a9d0bd740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20N=C3=BCtzi?= Date: Wed, 10 Dec 2025 18:57:50 +0100 Subject: [PATCH] fix: add comment how to obtain these files --- nixos/tests/gitlab/runner/podman-runner/root/README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/nixos/tests/gitlab/runner/podman-runner/root/README.md b/nixos/tests/gitlab/runner/podman-runner/root/README.md index ccd5b0474792..ea1ae8b6a9f9 100644 --- a/nixos/tests/gitlab/runner/podman-runner/root/README.md +++ b/nixos/tests/gitlab/runner/podman-runner/root/README.md @@ -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 +```