nixcfg/cluster/prod/app/email/build/opendkim/Dockerfile
2022-08-25 04:39:44 +02:00

10 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"]