booly/Dockerfile
2026-02-01 21:20:36 +13:00

12 lines
No EOL
190 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/
COPY config.toml .
CMD ["python", "bot.py"]