Open llegolas opened 2 weeks ago
I find this https://github.com/containers/buildah/commit/5e82f27fb665d616ea7c0b4d8dc54d38ea89fb2d which seem to try to fix exactly what i observe. my buildah version is:
$ buildah --version
buildah version 1.37.5 (image-spec 1.1.0, runtime-spec 1.2.0)
so I run the latest release. @mheon Any ideas ?
Trying to use
buildah from scratch
on recent fedora 41 I've stumbled with a problem when truing to install packages with dnf. DNF was failing with rpm unpacking errors which I've tracked down to rpm-plugin-ima. In short it seem overlay storage driver is not allowing setting extended file attributes. Here are the steps to reproduce:trying to use rpm directly spat out the ima related rpm error
which I was able to workaround by adding
--undefine=__transaction_ima
to rpm commandI vaguely remember similar problem years ago but it was related to selinux (it stores its labels as xattrs if my memory serves me right too) and I was able to workaround it with
dnf .... --setopt tsflags=nocontexts .....
unfortunately there is no tsflag for rpm-ima.I can provide more info about the system if need be.