dockerfiles/postfix/Dockerfile
Jess Frazelle 31c1084645
postfix
Signed-off-by: Jess Frazelle <acidburn@google.com>
2017-01-10 15:24:32 -08:00

17 lines
263 B
Docker

FROM alpine:edge
RUN apk add --no-cache \
bash \
libsasl \
postfix \
rsyslog \
runit
COPY service /etc/service
COPY runit_bootstrap /usr/sbin/runit_bootstrap
COPY rsyslog.conf /etc/rsyslog.conf
STOPSIGNAL SIGKILL
ENTRYPOINT ["/usr/sbin/runit_bootstrap"]