dockerfiles/postfix/Dockerfile
Jess Frazelle c174139071
update base images
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-09-14 11:48:08 -04:00

20 lines
355 B
Docker

FROM alpine:latest
RUN apk add --no-cache \
bash \
ca-certificates \
libsasl \
mailx \
postfix \
rsyslog \
runit \
--repository https://dl-3.alpinelinux.org/alpine/edge/main
COPY service /etc/service
COPY runit_bootstrap /usr/sbin/runit_bootstrap
COPY rsyslog.conf /etc/rsyslog.conf
STOPSIGNAL SIGKILL
ENTRYPOINT ["/usr/sbin/runit_bootstrap"]