Add execute permissions to the scripts

This commit is contained in:
2026-02-22 21:15:45 +00:00
parent c975e47412
commit cc175da801

View File

@@ -1,11 +1,16 @@
FROM python:3.14-slim FROM python:3.14-slim
# Copy application files # Copy application files
WORKDIR /config WORKDIR /config
COPY scripts ./scripts COPY scripts ./scripts
COPY config.py . COPY config.py .
COPY flairtimercomment.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 # Create App directory
RUN mkdir /app RUN mkdir /app
# Install dependencies # Install dependencies