exherbo-dockermail/opendkim/Dockerfile

24 lines
536 B
Docker
Raw Normal View History

2015-07-08 09:06:43 +00:00
FROM ubuntu:14.10
ENV DEBIAN_FRONTEND noninteractive
RUN locale-gen en_GB en_GB.UTF-8 && dpkg-reconfigure locales
# Prerequisites
RUN apt-get update && apt-get install -y \
opendkim && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2015-07-08 12:17:04 +00:00
# Nice place for your settings
2015-07-08 09:06:43 +00:00
VOLUME ["/mail_settings"]
2015-07-08 12:17:04 +00:00
# Configure boot script
COPY boot /
2015-07-08 09:06:43 +00:00
RUN chmod 755 /boot
2015-07-08 12:17:04 +00:00
ENV OPEN_DKIM true
ENV OPEN_DKIM_PORT_8891_ADDR inet:8891
EXPOSE 8891
ENTRYPOINT ./boot; service rsyslog start; opendkim -f -p $OPEN_DKIM_PORT_8891_ADDR