Updated Dockerfiles and small changes

This commit is contained in:
2025-11-29 00:07:05 +01:00
parent ab72c01999
commit 3ab81fad8c
13 changed files with 856 additions and 1024 deletions

View File

@@ -0,0 +1,11 @@
FROM ghcr.io/astral-sh/uv:python3.13-alpine
WORKDIR /app
COPY pyproject.toml ./
RUN uv sync
COPY . .
CMD ["uv", "run", "uvicorn","main:app", "--host", "0.0.0.0" ,"--port", "8001"]