Skip to content

Commit b1b27e5

Browse files
committed
opendkim
1 parent 7c2731f commit b1b27e5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

opendkim/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
FROM ubuntu:noble
22

33
ARG POSTFIX_GID=4005
4+
ARG OPENDKIM_UID=4008
5+
ARG OPENDKIM_GID=4008
6+
47
RUN apt-get update && apt-get install -y opendkim openssl
8+
RUN groupmod -g ${OPENDKIM_GID} opendkim && \
9+
usermod -u ${OPENDKIM_UID} -g ${OPENDKIM_GID} opendkim
510
RUN groupadd -g ${POSTFIX_GID} postfix && gpasswd -a opendkim postfix
611

712
ENTRYPOINT ["/usr/sbin/opendkim"]

0 commit comments

Comments
 (0)