From cc175da801eceae95347b759a2a5af387a3f2536 Mon Sep 17 00:00:00 2001 From: Slfhstd Date: Sun, 22 Feb 2026 21:15:45 +0000 Subject: [PATCH] Add execute permissions to the scripts --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a9cebdf..18e3346 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,16 @@ FROM python:3.14-slim # Copy application files - WORKDIR /config COPY scripts ./scripts COPY config.py . COPY flairtimercomment.py . + +# Add execute permissions to the scripts +RUN chmod +x /config/scripts/start_bot.sh +RUN chmod +x /config/scripts/autorun.sh +RUN chmod +x /config/scripts/copy.sh + # Create App directory RUN mkdir /app # Install dependencies