Add server + docker

This commit is contained in:
√(noham)²
2026-05-25 14:56:20 +02:00
commit 0c64b0200a
7 changed files with 815 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.11-slim
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
WORKDIR /app
COPY pyproject.toml ./
RUN uv sync --no-dev
COPY main.py ./
EXPOSE 8080
CMD ["uv", "run", "python", "main.py"]