From d5b8ba8d9c47036c71d927873a9ae9757c47d9d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lipka?= <2389215+michallipka@users.noreply.github.com> Date: Sat, 2 Aug 2025 00:55:40 +0200 Subject: [PATCH] repair file paths to allow build Without this change docker compose up failed while buildir the persedmarc container with "/parsedmarc.ini": not found. This change ensures sample file be copied inside parsedmarc container --- parsedmarc/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsedmarc/Dockerfile b/parsedmarc/Dockerfile index c2ea0cd..cc77e91 100644 --- a/parsedmarc/Dockerfile +++ b/parsedmarc/Dockerfile @@ -5,5 +5,5 @@ RUN apk add --update --no-cache --virtual .build_deps build-base libffi-dev \ && pip install parsedmarc \ && apk del .build_deps -COPY parsedmarc.ini / +COPY parsedmarc.sample.ini /parsedmarc.ini #COPY GeoLite2-Country.mmdb /usr/share/GeoIP/GeoLite2-Country.mmdb