From 25ccfab708bdac098694ffe86ac0f9f034571181 Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Thu, 26 Dec 2024 23:21:12 +0100 Subject: [PATCH] debug: divide chown and chgrp --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 48522b6..c46e481 100644 --- a/Containerfile +++ b/Containerfile @@ -33,8 +33,8 @@ 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 - +RUN chown imapfilter /home/imapfilter +RUN chgrp imapfilter /home/imapfilter # run everything as the imapfilter user USER imapfilter