mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
14 lines
274 B
Docker
14 lines
274 B
Docker
FROM alpine:edge
|
|
|
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
|
&& apk add --update \
|
|
rspamd@testing \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
RUN mkdir /run/rspamd
|
|
|
|
COPY conf/ /etc/rspamd
|
|
COPY start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|