Files
userbot/edu_master/phpsessid-bot/Dockerfile
T
2025-11-26 20:53:53 +01:00

16 lines
280 B
Docker

FROM python:3.11-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y redis-tools && rm -rf /var/lib/apt/lists/*
# Install dependencies
RUN pip install requests redis
# Copy application code
COPY . .
# Run the bot
CMD ["python", "bot.py"]