dockerfiles/postfix/Dockerfile
Jess Frazelle 3fef00b940
updates
Signed-off-by: Jess Frazelle <acidburn@google.com>
2017-01-14 16:16:44 -08:00

18 lines
282 B
Docker

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