feat: add Docker setup and README

This commit is contained in:
2026-05-25 18:54:11 +02:00
parent d8d7e1a66f
commit da2a518f8a
3 changed files with 139 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM python:3.11-slim AS base
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
WORKDIR /app
COPY pyproject.toml uv.lock ./
RUN uv sync --frozen --no-dev
COPY src/ src/
EXPOSE 8000
CMD ["uv", "run", "start"]