Initial commit
This commit is contained in:
commit
397ddb0e2b
10 changed files with 275 additions and 0 deletions
11
data/Dockerfiles/parsedmarc/Dockerfile
Normal file
11
data/Dockerfiles/parsedmarc/Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM pypy:3-slim
|
||||
|
||||
ADD start.sh /start.sh
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y libxslt-dev libz-dev libxml2-dev gcc libemail-outlook-message-perl \
|
||||
&& pip install -U parsedmarc \
|
||||
&& apt-get purge --yes gcc && apt autoremove --yes && apt-get clean \
|
||||
&& rm -Rf /var/lib/{apt,dpkg}/ && rm -Rf /root/.cache/ \
|
||||
&& chmod +x /start.sh
|
||||
|
||||
ENTRYPOINT [ "/start.sh" ]
|
Loading…
Add table
Add a link
Reference in a new issue