2016-05-29 15:54:02 +02:00
|
|
|
FROM alpine:edge
|
2016-02-24 08:44:49 +02:00
|
|
|
|
2016-03-02 22:25:56 +02:00
|
|
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
2017-07-02 16:26:31 +02:00
|
|
|
&& apk add --no-cache rmilter@testing rsyslog bash
|
2017-02-12 17:46:30 +02:00
|
|
|
|
2016-05-29 15:54:02 +02:00
|
|
|
COPY rmilter.conf /etc/rmilter.conf
|
2017-06-25 18:15:47 +02:00
|
|
|
COPY rmilter-clamav.conf /etc/rmilter-clamav.conf
|
2016-03-02 22:25:56 +02:00
|
|
|
COPY rsyslog.conf /etc/rsyslog.conf
|
|
|
|
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
|
2017-02-12 17:46:30 +02:00
|
|
|
CMD ["/start.sh"]
|