docker-postfix/Dockerfile

13 lines
209 B
Docker
Raw Normal View History

2020-02-13 17:57:12 +00:00
FROM alpine:3.11
RUN apk add --no-cache \
postfix \
rsyslog \
runit
COPY service /etc/service
COPY entrypoint.sh /entrypoint.sh
COPY rsyslog.conf /etc/rsyslog.conf
ENTRYPOINT ["/entrypoint.sh"]