diff --git a/Dockerfile b/Dockerfile index 7d9b714..67dbde4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,11 @@ FROM python:3.11-slim -# Set working directory WORKDIR /app -# Copy requirements and install dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -# Copy bot file COPY bot.py . +COPY cogs/ ./cogs/ -# Run the bot CMD ["python", "bot.py"] \ No newline at end of file