We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c2731f commit b1b27e5Copy full SHA for b1b27e5
opendkim/Dockerfile
@@ -1,7 +1,12 @@
1
FROM ubuntu:noble
2
3
ARG POSTFIX_GID=4005
4
+ARG OPENDKIM_UID=4008
5
+ARG OPENDKIM_GID=4008
6
+
7
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
10
RUN groupadd -g ${POSTFIX_GID} postfix && gpasswd -a opendkim postfix
11
12
ENTRYPOINT ["/usr/sbin/opendkim"]
0 commit comments