booly/Dockerfile

11 lines
171 B
Text
Raw Permalink Normal View History

2026-01-19 09:00:58 +00:00
FROM python:3.11-slim
2026-01-19 08:40:54 +00:00
WORKDIR /app
2026-01-19 09:00:58 +00:00
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
2026-01-19 08:40:54 +00:00
2026-01-19 09:00:58 +00:00
COPY bot.py .
2026-01-25 07:04:03 +00:00
COPY cogs/ ./cogs/
2026-01-19 08:53:27 +00:00
2026-01-19 09:00:58 +00:00
CMD ["python", "bot.py"]