1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/amavis/Dockerfile
2016-03-02 22:31:44 +01:00

20 lines
397 B
Docker

FROM alpine
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
&& apk add --update \
perl-socket6 \
perl-io-socket-inet6@testing \
amavisd-new \
spamassassin \
clamav \
rsyslog \
wget \
&& rm -rf /var/cache/apk/*
COPY conf /etc/
COPY rsyslog.conf /etc/rsyslog.conf
COPY start.sh /start.sh
CMD ["/start.sh"]