From 02c2d750205ab5e7a53ee8d86ece19423426baf9 Mon Sep 17 00:00:00 2001 From: "k.eaven" Date: Mon, 11 Aug 2025 04:13:18 -0700 Subject: [PATCH] Update image build process --- dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index eaa8592..5cac93f 100644 --- a/dockerfile +++ b/dockerfile @@ -23,8 +23,8 @@ RUN groupadd -r bot && useradd -r -g bot bot COPY --chown=bot:bot . . # Create directories for persistent storage and modify permissions -RUN chown -R bot:bot /* && \ - chmod -R 777 /* +RUN chown -R bot:bot /app && \ + chmod -R 777 /app RUN mkdir -p logs && \ chown -R bot:bot logs && \ chmod -R 777 logs && \