blob: 452d6e8a2b49c379f7a9b4e5c153e160a904f3d4 (
plain) (
tree)
|
|
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"]
|