Update image build process
Some checks failed
Docker Build and Push / build-and-push (push) Failing after 47s

This commit is contained in:
2025-08-11 03:25:14 -07:00
parent 30ddcd3a58
commit cc5050aee2

View File

@@ -24,8 +24,8 @@ RUN useradd -m bot
USER bot
# Create directories for persistent storage and modify permissions
RUN mkdir -p /app/logs && chown -R bot:bot /app/logs && chmod -R 777 /app/logs
RUN mkdir -p /app/embed && chown -R bot:bot /app/embed && chmod -R 777 /app/embed
RUN mkdir -p /app/logs && chmod -R 777 /app/logs
RUN mkdir -p /app/embed && chmod -R 777 /app/embed
# Set environment variables for configuration
ENV PYTHONUNBUFFERED=1