thought-engine-bridge / Dockerfile
Kode-Animator's picture
fix: Align entrypoint with Federation Bridge pattern
4cb557e
Raw
History Blame Contribute Delete
434 Bytes
# Thought Engine Bridge — Docker Container
# Contract: C-THOUGHT-BRIDGE-001 (Phase 2)
# Exposes the Thought Engine Node as MCP tools via SSE transport.
FROM python:3.11
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . /app
CMD ["python", "server.py"]