From e3c1c51700635ea4840d3b6af42e6425dc1a2980 Mon Sep 17 00:00:00 2001 From: Charlie Date: Sun, 25 Jan 2026 20:04:03 +1300 Subject: [PATCH] Hotfix | Dockerfile outdated --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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