1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-18 03:21:36 +02:00
Mailu/rspamd/Dockerfile

14 lines
274 B
Docker
Raw Normal View History

FROM alpine:edge
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
&& apk add --update \
2016-06-19 21:56:20 +02:00
rspamd@testing \
&& rm -rf /var/cache/apk/*
2016-06-19 21:56:20 +02:00
RUN mkdir /run/rspamd
2016-06-19 21:56:20 +02:00
COPY conf/ /etc/rspamd
COPY start.sh /start.sh
CMD ["/start.sh"]