mirror of
https://github.com/debricked/dmarc-visualizer.git
synced 2026-07-08 17:45:11 +00:00
10 lines
303 B
Docker
10 lines
303 B
Docker
FROM python:alpine
|
|
|
|
RUN apk add --update --no-cache libxml2-dev libxslt-dev
|
|
RUN apk add --update --no-cache --virtual .build_deps build-base libffi-dev \
|
|
&& pip install parsedmarc \
|
|
&& apk del .build_deps
|
|
|
|
COPY parsedmarc.ini /
|
|
#COPY GeoLite2-Country.mmdb /usr/share/GeoIP/GeoLite2-Country.mmdb
|