mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +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
|