From bf6a34da8024965e7c53fabb72e69201b29ef55a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Tue, 21 May 2024 10:16:54 +0200 Subject: [PATCH] opensuse/tumbleweed: Install xargs first It looks like xargs has been removed from the base image of tumbleweed. Let's make sure it's installed before using it. --- opensuse/tumbleweed/Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/opensuse/tumbleweed/Containerfile b/opensuse/tumbleweed/Containerfile index 370882e6..edace045 100644 --- a/opensuse/tumbleweed/Containerfile +++ b/opensuse/tumbleweed/Containerfile @@ -10,6 +10,7 @@ LABEL com.github.containers.toolbox="true" \ # Update packages, install extra packages and clean up cache COPY extra-packages / RUN zypper update -y && \ + zypper install -y xargs && \ cat /extra-packages | xargs zypper install -y && \ zypper clean RUN rm /extra-packages