From cbf005ca09a3dbda5b45118b4d06c9bf352a5e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Fri, 18 Nov 2022 13:22:08 +0100 Subject: [PATCH] Allow any user to run the container MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #17 Signed-off-by: Aurélien Bompard --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 11bda23..a59a8f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ RUN addgroup -S sendria && adduser -S sendria -G sendria WORKDIR /home/sendria USER sendria RUN python3 -m pip install --user sendria==$VERSION +RUN chmod 0755 .local ENV PATH="/home/sendria/.local/bin:$PATH" EXPOSE 1025 1080