FROM python:3.10.4-slim WORKDIR /app COPY . . RUN pip install poetry && poetry install --no-dev CMD ["poetry", "run", "python", "bot.py"]