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
310 B
Docker
13 lines
310 B
Docker
9 years ago
|
FROM alpine:edge
|
||
9 years ago
|
|
||
9 years ago
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
||
|
&& apk add --update \
|
||
9 years ago
|
rmilter@testing rsyslog \
|
||
9 years ago
|
&& rm -rf /var/cache/apk/*
|
||
9 years ago
|
|
||
|
COPY rmilter.conf /etc/rmilter.conf
|
||
9 years ago
|
COPY rsyslog.conf /etc/rsyslog.conf
|
||
|
|
||
|
COPY start.sh /start.sh
|
||
|
|
||
9 years ago
|
CMD ["/start.sh"]
|