Initial commit

This commit is contained in:
paul 2020-08-12 11:23:06 +02:00
commit 01f81babfa
1 changed files with 15 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
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"]