FROM python:3.11-bookworm RUN pip install poetry COPY . . RUN poetry install ENTRYPOINT ["poetry", "run", "python", "-u", "main.py"]