You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-11-23 22:04:47 +02:00
11 lines
192 B
Docker
11 lines
192 B
Docker
FROM alpine:edge
|
|
|
|
RUN apk add --no-cache python py-jinja2 rspamd rspamd-controller rspamd-proxy ca-certificates
|
|
|
|
RUN mkdir /run/rspamd
|
|
|
|
COPY conf/ /conf
|
|
COPY start.py /start.py
|
|
|
|
CMD /start.py
|