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-02-01 08:20:36 +00:00
|
|
|
COPY config.toml .
|
2026-01-19 08:53:27 +00:00
|
|
|
|
2026-01-19 09:00:58 +00:00
|
|
|
CMD ["python", "bot.py"]
|