dkim/Dockerfile

16 lines
345 B
Docker
Raw Normal View History

2020-08-12 11:23:06 +02:00
FROM debian:buster
EXPOSE 8891
RUN DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -y --no-install-recommends \
opendkim \
opendkim-tools && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
VOLUME /etc/opendkim
ENTRYPOINT ["opendkim","-x","/etc/opendkim/opendkim.conf","-u","opendkim","-f"]