booly/Dockerfile
2026-01-19 22:00:58 +13:00

14 lines
No EOL
251 B
Docker

FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy bot file
COPY bot.py .
# Run the bot
CMD ["python", "bot.py"]