From b3b8bd7fd31431da450c3089eb4cfb8900ea37dc Mon Sep 17 00:00:00 2001 From: jbtrystram Date: Wed, 4 Dec 2024 09:23:27 +0100 Subject: [PATCH] test containers: add systemd to tang image In the F41 fedora-minimal image, systemctl stopped working. We need to enable tang.service in the container so we need systemd in the container. Adding systemd in the container. --- tests/containers/tang/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/containers/tang/Containerfile b/tests/containers/tang/Containerfile index fb7dfdce00..a4d44e5320 100644 --- a/tests/containers/tang/Containerfile +++ b/tests/containers/tang/Containerfile @@ -1,6 +1,6 @@ FROM registry.fedoraproject.org/fedora-minimal:41 -RUN dnf -y install tang && dnf clean all && rm -rf /var/cache/yum +RUN dnf -y install systemd tang && dnf clean all && rm -rf /var/cache/yum EXPOSE 80 RUN systemctl enable tangd.socket