FROM python:3.11-slim
WORKDIR /app
COPY . /app
COPY requirements.txt /app/
RUN pip install -r /app/requirements.txt
CMD ["python", "bot/main.py"]