Initial commit
This commit is contained in:
commit
01f81babfa
1 changed files with 15 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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"]
|
Loading…
Reference in a new issue