forked from Deuxfleurs/nixcfg
10 lines
224 B
Docker
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"]
|