2026-01-19 09:00:58 +00:00
|
|
|
FROM python:3.11-slim
|
2026-01-19 08:40:54 +00:00
|
|
|
|
|
|
|
|
# Set working directory
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
2026-01-19 09:00:58 +00:00
|
|
|
# Copy requirements and install dependencies
|
|
|
|
|
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 file
|
|
|
|
|
COPY bot.py .
|
2026-01-19 08:53:27 +00:00
|
|
|
|
2026-01-19 09:00:58 +00:00
|
|
|
# Run the bot
|
|
|
|
|
CMD ["python", "bot.py"]
|