Initial SFERA platform baseline

This commit is contained in:
2026-05-16 19:03:49 +03:00
commit 3b845c8fce
282 changed files with 55045 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM ghcr.io/astral-sh/uv:python3.12-bookworm
WORKDIR /app
ENV UV_COMPILE_BYTECODE=1
ENV UV_LINK_MODE=copy
COPY pyproject.toml uv.lock ./
COPY packages ./packages
COPY services ./services
RUN uv sync --frozen --package sfera-runtime-adapter
EXPOSE 8010
CMD ["uv", "run", "--package", "sfera-runtime-adapter", "uvicorn", "runtime_adapter.main:app", "--host", "0.0.0.0", "--port", "8010"]