Initial commit

This commit is contained in:
Patrik Kernstock 2020-08-08 20:32:53 +01:00
commit 397ddb0e2b
10 changed files with 275 additions and 0 deletions

View 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" ]