Initial SQL-only 1C adapter baseline

This commit is contained in:
2026-07-22 03:03:47 +03:00
commit e2503b77e7
545 changed files with 184711 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
ONEC_AGENT_HOST=0.0.0.0 \
ONEC_AGENT_PORT=8090
WORKDIR /app
RUN pip install --no-cache-dir pyyaml==6.0.2
COPY scripts /app/scripts
COPY plugins/1c /app/plugins/1c
COPY config /app/config
COPY registry /app/registry
EXPOSE 8090
CMD ["python", "/app/plugins/1c/agent/agent_server.py", "--host", "0.0.0.0", "--port", "8090"]