forked from Deuxfleurs/nixcfg
9 lines
224 B
Docker
9 lines
224 B
Docker
FROM amd64/debian:bullseye
|
|
|
|
RUN apt-get update && \
|
|
apt-get dist-upgrade -y && \
|
|
apt-get install -y opendkim opendkim-tools
|
|
|
|
COPY ./opendkim.conf /etc/opendkim.conf
|
|
COPY ./entrypoint /entrypoint
|
|
CMD ["/entrypoint"]
|