From 865858cf5f2579096183a6b7df37b5acbddfcb93 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 28 Jan 2024 12:26:32 -0600 Subject: [PATCH] Run rpm-ostree via nsenter Pre-configuration scripts may need to install packages on the host using `rpm-ostree`. --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index 72dbeb6..2fa7532 100644 --- a/Containerfile +++ b/Containerfile @@ -8,6 +8,7 @@ RUN --mount=type=cache,target=/var/cache \ && ln -snf /host/etc/passwd /etc/passwd \ && ln -snf /host/etc/group /etc/group \ && for cmd in \ + rpm-ostree \ systemctl \ systemd-sysusers \ ; do ln -s nsenter.sh /usr/local/bin/${cmd}; done \