dockerfiles/postfix/Dockerfile
Jess Frazelle bce69ad90b
add mailx
Signed-off-by: Jess Frazelle <acidburn@google.com>
2017-03-02 12:31:20 -08:00

19 lines
291 B
Docker

FROM alpine:edge
RUN apk add --no-cache \
bash \
ca-certificates \
libsasl \
mailx \
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"]