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.
14 lines
339 B
Docker
14 lines
339 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 --upgrade musl musl-utils && \
|
|
apk add --no-cache rspamd rsyslog
|
|
|
|
RUN mkdir /run/rspamd
|
|
|
|
COPY conf/ /etc/rspamd
|
|
COPY start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|