booly/Dockerfile
2026-01-25 20:04:03 +13:00

11 lines
No EOL
171 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY bot.py .
COPY cogs/ ./cogs/
CMD ["python", "bot.py"]