From 306f017d2b35683652f69a1b0e1e0340553c231e Mon Sep 17 00:00:00 2001 From: Simon Steinbeiss Date: Mon, 25 Dec 2023 22:31:14 +0100 Subject: [PATCH] Dockerfile: Add yaml and cryptography modules Both are needed for Slack ping support. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6afffe0..2879aad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ FROM registry.fedoraproject.org/fedora:39 RUN dnf -y install --setopt=install_weak_deps=False \ - python3 python3-pip python3-slackclient python3-requests && \ + python3 python3-pip python3-slackclient python3-requests \ + python3-pyyaml python3-cryptography && \ dnf clean all RUN pip install ghapi \ No newline at end of file