Skip to content

Commit

Permalink
Add dependencies for ARM64 builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
accolon committed Jan 3, 2023
1 parent 18aeb81 commit 38097ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions data/Dockerfiles/parsedmarc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ 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/ \
&& apt-get install -y libxslt-dev libz-dev libxml2-dev libssl-dev gcc rustc libemail-outlook-message-perl \
&& pip install -U --no-cache-dir parsedmarc \
&& apt-get purge --yes gcc rustc && apt autoremove --yes && apt-get clean \
&& rm -Rf /var/lib/{apt,dpkg}/ && rm -Rf /root/.cache/ && rm -Rf /root/.cargo/ \
&& chmod +x /start.sh

ENTRYPOINT [ "/start.sh" ]

0 comments on commit 38097ee

Please sign in to comment.