FROM python:3.11-bookworm
RUN pip install poetry
COPY . .
RUN poetry install --without=dev
CMD ["poetry", "run", "python", "-m", "src"]