blob: 70a39e4e9ab56662d44b541fd97362e2e3d79710 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
FROM amd64/debian:buster
RUN apt-get update && \
apt-get dist-upgrade -y && \
apt-get install -y opendkim opendkim-tools
COPY ./opendkim.conf /etc/opendkim.conf
CMD opendkim -f -v -x /etc/opendkim.conf
|