From 8e3dcf2b112c3a95a2cc0efa065abb799bf04e37 Mon Sep 17 00:00:00 2001 From: Allison Karlitskaya Date: Thu, 15 Feb 2024 10:56:15 +0100 Subject: [PATCH] tasks: add podman-remote This is equivalent to `podman --remote` and sends commands to a running daemon. We can use this to communicate with a podman daemon running outside of the container with its socket bind-mounted in. Also, sort! --- tasks/Containerfile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tasks/Containerfile b/tasks/Containerfile index 590b349e..5f3f7a9d 100644 --- a/tasks/Containerfile +++ b/tasks/Containerfile @@ -22,20 +22,21 @@ RUN dnf -y update && \ intltool \ jq \ lcov \ + libXt \ libappstream-glib \ - libvirt-daemon-driver-storage-core \ - libvirt-daemon-driver-qemu \ libvirt-client \ + libvirt-daemon-driver-qemu \ + libvirt-daemon-driver-storage-core \ libvirt-python3 \ - libXt \ nc \ net-tools \ nodejs-devel \ npm \ passwd \ pigz \ - psmisc \ + podman-remote \ procps-ng \ + psmisc \ python3 \ python3-build \ python3-flake8 \ @@ -53,7 +54,8 @@ RUN dnf -y update && \ tar \ valgrind \ vim-enhanced \ - virt-install && \ + virt-install \ + && \ curl -o /tmp/cockpit.spec -s https://raw.githubusercontent.com/cockpit-project/cockpit/main/tools/cockpit.spec && \ dnf -y builddep --setopt=install_weak_deps=False /tmp/cockpit.spec && \ rm /tmp/cockpit.spec && \