Fast IAAI implementation

This commit is contained in:
2026-04-24 00:20:42 +03:00
parent 2b0cffc118
commit 3cdb717789
31 changed files with 4880 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM python:3.13-slim
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /app
RUN pip install --no-cache-dir --upgrade pip
COPY pyproject.toml /app/
COPY iaai_sync_service /app/iaai_sync_service
COPY alembic.ini /app/alembic.ini
COPY alembic /app/alembic
COPY sync_runtime_config.json /app/sync_runtime_config.json
RUN pip install --no-cache-dir . \
&& playwright install --with-deps chromium
CMD ["python", "-m", "iaai_sync_service.cli"]