1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-16 10:59:53 +02:00
Mailu/rspamd/Dockerfile

13 lines
302 B
Docker
Raw Normal View History

FROM alpine:edge
2016-12-26 22:21:00 +02:00
# We have to upgrade musl, or rspamd will not work.
2016-12-27 23:35:30 +02:00
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories \
&& apk add --no-cache rspamd rsyslog ca-certificates
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"]