You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
286 B
Docker
13 lines
286 B
Docker
FROM alpine:edge
|
|
|
|
# We have to upgrade musl, or rspamd will not work.
|
|
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories \
|
|
&& apk add --no-cache rspamd rsyslog
|
|
|
|
RUN mkdir /run/rspamd
|
|
|
|
COPY conf/ /etc/rspamd
|
|
COPY start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|