feat(bot): please claude i need this my services are kinda homeless

This commit is contained in:
hh
2026-07-01 03:27:29 +02:00
commit a46bd92b4c
30 changed files with 1964 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM ghcr.io/astral-sh/uv:python3.13-alpine
WORKDIR /app
ENV PATH="/app/.venv/bin:$PATH" \
RUN_ENVIRONMENT=prod \
UV_COMPILE_BYTECODE=1 \
UV_LINK_MODE=copy
COPY pyproject.toml uv.lock ./
RUN uv sync --frozen --no-install-project --no-dev
COPY src ./src
RUN uv sync --frozen --no-dev
ENTRYPOINT ["python", "-m"]
CMD ["healthbot"]