From 50c1f3641a33f526aaf3812633bfb66f24e0fa40 Mon Sep 17 00:00:00 2001 From: Florian Hillebrand Date: Mon, 4 Mar 2024 18:52:00 +0100 Subject: [PATCH] Add build dependencies. --- data/Dockerfiles/parsedmarc/Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/data/Dockerfiles/parsedmarc/Dockerfile b/data/Dockerfiles/parsedmarc/Dockerfile index 00d0b2c..1638734 100644 --- a/data/Dockerfiles/parsedmarc/Dockerfile +++ b/data/Dockerfiles/parsedmarc/Dockerfile @@ -2,9 +2,12 @@ FROM pypy:3-slim ADD start.sh /start.sh RUN apt-get update \ - && apt-get install -y libxslt-dev libz-dev libxml2-dev libssl-dev gcc rustc libemail-outlook-message-perl \ - && pip install -U --no-cache-dir parsedmarc \ - && apt-get purge --yes gcc rustc && apt autoremove --yes && apt-get clean \ + && apt-get install -y \ + python3-pip python3-dev libxml2-dev libxslt-dev libz-dev libxml2-dev libssl-dev \ + gcc rustc libemail-outlook-message-perl python3-gi python3-gi-cairo \ + gir1.2-secret-1 +RUN pip install -U --no-cache-dir parsedmarc \ +RUN apt-get purge --yes gcc rustc && apt autoremove --yes && apt-get clean \ && rm -Rf /var/lib/{apt,dpkg}/ && rm -Rf /root/.cache/ && rm -Rf /root/.cargo/ \ && chmod +x /start.sh