From 4053d55cb663edc33c7c244a07f90caa385651ff Mon Sep 17 00:00:00 2001 From: Walter Date: Fri, 21 Feb 2025 02:08:27 +0100 Subject: [PATCH] fix bug --- app/Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/Dockerfile b/app/Dockerfile index 5869e3a..9fc7bf2 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -22,11 +22,8 @@ RUN pip install --upgrade pip && \ COPY . $APP_HOME RUN sed -i 's/\r$//g' $APP_HOME/entrypoint.sh && \ - chown -R app:app $APP_HOME && \ chmod +x $APP_HOME/entrypoint.sh && \ - chown root:root $APP_HOME/fix_permissions.sh && \ - chmod +x $APP_HOME/fix_permissions.sh && \ - chmod u+s $APP_HOME/fix_permissions.sh + chown -R app:app $APP_HOME USER app