Fix bugs, add README and Makefile

This commit is contained in:
2026-01-16 20:39:51 +03:00
parent 3e515c66ec
commit a065c6b7be
30 changed files with 695 additions and 286 deletions

View File

@@ -4,13 +4,14 @@ WORKDIR /app
RUN pip install uv && apt update && apt install -y git
COPY pyproject.toml uv.lock README.md /app
COPY birthday_pool_bot /app
RUN uv sync
COPY birthday_pool_bot /app/birthday_pool_bot
ENTRYPOINT ["uv", "run"]
FROM core AS app
RUN uv sync --group sqlite
RUN uv sync --group sqlite --group postgresql
ENTRYPOINT ["uv", "run", "python", "-m", "birthday_pool_bot"]