From ed5680f583182b84165a4d0b38cf0be8569546e5 Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Thu, 26 Dec 2024 23:19:03 +0100 Subject: [PATCH] debug: check user creation --- Containerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containerfile b/Containerfile index 9872696..48522b6 100644 --- a/Containerfile +++ b/Containerfile @@ -29,6 +29,8 @@ RUN chmod +x /entryPoint.sh # add a user for running imapfilter in the container RUN addgroup imapfilter RUN adduser -D -G imapfilter imapfilter + +RUN cat /etc/passwd # ensure a homedirectory for the user exists and has correct access rights RUN mkdir -p /home/imapfilter RUN chown imapfilter.imapfilter /home/imapfilter