Hotfix | Dockerfile outdated

This commit is contained in:
Charlie 2026-01-25 20:04:03 +13:00
parent d468ee68a4
commit e3c1c51700

View file

@ -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"]