Skip to content

Commit

Permalink
Merge pull request #24 from casperdcl/minify-docker
Browse files Browse the repository at this point in the history
minify Docker image
  • Loading branch information
sweoggy authored Sep 20, 2022
2 parents 0e0147e + 702cf88 commit 454ee2c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions parsedmarc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM python:alpine

RUN apk add build-base libxml2-dev libxslt-dev libffi-dev \
&& pip install parsedmarc
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

0 comments on commit 454ee2c

Please sign in to comment.