From 20ed4343b319705853759073fab8e9fc312f5102 Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: Thu, 2 May 2024 13:17:57 +1000 Subject: [PATCH] maubot: add missing python-devel dep Signed-off-by: Ryan Lerch --- roles/openshift-apps/maubot/templates/buildconfig.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/openshift-apps/maubot/templates/buildconfig.yml b/roles/openshift-apps/maubot/templates/buildconfig.yml index d2761d903d..5d3da496f1 100644 --- a/roles/openshift-apps/maubot/templates/buildconfig.yml +++ b/roles/openshift-apps/maubot/templates/buildconfig.yml @@ -12,7 +12,7 @@ spec: source: dockerfile: |- FROM fedora:40 - RUN dnf -y install python3-pip python3-gssapi git libpq-devel gcc && dnf -y clean all + RUN dnf -y install python3-pip python3-gssapi git libpq-devel gcc python-devel && dnf -y clean all RUN pip install maubot[encryption] python-slugify httpx httpx_gssapi jinja2 fedora-messaging meetbot-messages pydantic maubot-fedora-messages backoff arrow python-gitlab RUN \ curl https://raw.githubusercontent.com/fedora-infra/matrix-bots/main/install-plugins-from-git.py -o /usr/local/bin/install-maubot-plugins && \